/* =========================================
   PET SPACE - THE ENROLL CSS
   ========================================= */

.enroll-section {
    padding: 5rem 0;
    max-width: 500px;
    margin: 0 auto;
}

.enroll-card {
    text-align: center;
    background: white;
    padding: 2.5rem;
}

.enroll-card h2 {
    font-family: 'Quicksand', sans-serif;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.enroll-card h2 span { 
    color: var(--pet-gold); 
}

.enroll-card p {
    color: #7a7a7a;
    margin-bottom: 2rem;
    font-family: 'Varela Round', sans-serif;
}

.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #666;
    font-size: 0.9rem;
}

.enroll-card input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
    box-sizing: border-box;
}

.enroll-card input:focus {
    outline: none;
    border-color: var(--pet-gold);
    background: #fffdf5;
}

.helper-text {
    color: #888; 
    font-size: 0.75rem;
    display: block;
    margin-top: 5px;
}

.btn-enroll {
    width: 100%;
    background: var(--pet-gold);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 1rem;
}

.btn-enroll:hover {
    background: #ff9d1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 179, 71, 0.3);
}

.login-footer {
    margin-top: 1.5rem; 
    font-size: 0.9rem; 
    color: #666;
}

.login-footer a {
    color: var(--pet-gold); 
    font-weight: 700; 
    text-decoration: none;
}

.success-message {
    display: none; 
    color: var(--pet-gold); 
    margin-top: 1rem; 
    font-weight: 700;
}

.page-footer {
    margin-top: 3rem; 
    text-align: center; 
    padding: 2rem; 
    color: #aaa; 
    font-size: 0.85rem;
}