/* Page background and layout */
body.register-page {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(145deg, #fbf3e8 0%, #fae1d1 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Container for the register card - centered */
.register-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.register-card {
    max-width: 480px;
    width: 100%;
    background-color: #ffffffdd;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 40px 40px 40px 40px;
    box-shadow: 0 30px 45px -20px rgba(176, 130, 95, 0.5), 0 10px 20px -5px rgba(0,0,0,0.08);
    padding: 2.5rem 2.2rem;
    border: 2px solid #fff9f0;
    transition: transform 0.2s ease;
}

.register-card:hover {
    transform: scale(1.01);
}

label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: #6b4e3b;
    margin-bottom: 6px;
    margin-left: 5px;
}

/* button group — override canonical bottom margin */
.button-group {
    margin-bottom: 1.2rem;
}

.btn-primary {
    flex: 2;
    background: linear-gradient(105deg, #e2976b, #d88253);
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 15px 20px -10px #d6a182;
    transition: 0.15s linear;
    border: 1px solid #f7be97;
}

.btn-primary:hover {
    background: linear-gradient(105deg, #d88253, #c46f45);
    box-shadow: 0 18px 25px -10px #b47b5f;
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(2px);
    box-shadow: 0 5px 12px -5px #b78567;
}

.btn-secondary {
    flex: 1;
    background: #f0e0d4;
    border: 2px solid #eddacb;
    padding: 1rem;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #8b674d;
    cursor: pointer;
    transition: 0.15s linear;
    text-align: center;
    text-decoration: none;
    display: block;
}

.btn-secondary:hover {
    background: #e7d2c2;
    border-color: #dbb6a0;
    color: #6b4e3b;
}

.login-prompt {
    text-align: center;
    font-weight: 500;
    color: #755f4e;
    margin-top: 1rem;
}

.login-prompt a {
    color: #c27246;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #fad6bd;
}

.login-prompt a:hover {
    color: #a8582e;
    border-bottom: 2px solid #c27246;
}

hr {
    border: 1px solid #fadccb;
    margin: 1.2rem 0 0.8rem 0;
    opacity: 0.6;
}

/* password hint */
.hint {
    font-size: 0.8rem;
    color: #b28b72;
    margin-left: 10px;
    margin-top: 4px;
}

/* keep it responsive */
@media (max-width: 500px) {
    .register-card {
    padding: 2rem 1.5rem;
    }
    .brand h1 {
    font-size: 2rem;
    }
    .paw-icon {
    font-size: 2.2rem;
    }
    .button-group {
    flex-direction: column;
    }
}
