* {
    font-family: "Baloo Bhaijaan 2", cursive !important;
}

body {
    background: linear-gradient(135deg, #c8d0cc 0%, #a3ada4 100%);
    min-height: 100vh;
}

html {
    background-color: #a3ada4;
}

.success-message,
.error-message {
    display: none;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-top: 1rem;
    color: #155724;
    text-align: center;
    font-size: 0.9rem;
    display: none;
}

.error-message {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-top: 1rem;
    color: #721c24;
    text-align: center;
    font-size: 0.9rem;
    display: none;
}

.signup-container {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin: 2rem auto;
    max-width: 600px;
    position: relative;
    overflow: hidden;
}

.signup-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff7f50, #fa683b);
}

.signup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.signup-header h2 {
    color: #333;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
}

.signup-header p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.parent-icon {
    font-size: 4rem;
    color: #ff7f50;
    margin-bottom: 1rem;
}

.social-auth-section {
    margin-bottom: 2rem;
}

.social-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    text-decoration: none;
    cursor: pointer;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.google-btn {
    background-color: white;
    color: #333;
    border-color: #dadce0;
}

.google-btn:hover {
    background-color: #f8f9fa;
    color: #333;
}

.facebook-btn {
    background-color: #1877f2;
    color: white;
    border-color: #1877f2;
}

.facebook-btn:hover {
    background-color: #166fe5;
    color: white;
}

.social-icon {
    width: 20px;
    height: 20px;
}

.divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    color: #666;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e9ecef;
}

.divider span {
    padding: 0 1rem;
    background: white;
    font-weight: 500;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-control:focus {
    border-color: #ff7f50;
    box-shadow: 0 0 0 0.2rem rgba(255, 127, 80, 0.25);
    background-color: white;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.btn-custom {
    background: linear-gradient(135deg, #ff7f50, #ff6333);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-custom:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 127, 80, 0.4);
    background: linear-gradient(135deg, #ff6333, #ff5722);
}

.btn-custom:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-floating {
    position: relative;
}

.form-floating label {
    color: #666;
}

.benefits-section {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 4px solid #4caf50;
}

.benefits-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #555;
}

@media (max-width: 768px) {
    .signup-container {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
