body {
    min-height: 100vh;
    height: auto;
    overflow: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.signup-container {
    width: 90%;
    max-width: 1000px;
    min-height: 600px;
    height: auto;
    margin: 20px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    display: flex;
    gap: 30px;
}

.left-panel {
    flex: 1;
}

.left-panel h2,
.left-panel label,
.left-panel p {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.left-panel a {
    color: #FFD700;
    text-decoration: none;
}

.left-panel a:hover {
    color: #FFD700;
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

.right-panel {
    background: rgba(13, 110, 253, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-btn {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.facebook-btn {
    background: #1877f2;
    color: white;
}

.facebook-btn:hover {
    background: #1664d9;
}

.google-btn {
    border: 1px solid #ddd;
}

.google-btn:hover {
    background: #f8f9fa;
}

.google-btn img {
    height: 18px;
}

.divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    font-size: 0.9rem;
    font-family: Arial, sans-serif;
}

.divider::before,
.divider::after {
    content: "";
    height: 1px;
    background: #ddd;
    flex: 1;
    margin: 0 10px;
}

.form-control {
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.signup-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 1rem;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.signup-btn:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700);
    transform: translateY(-2px);
    color: white;
}

.benefits-list {
    margin-top: 20px;
    padding-left: 0;
}

.benefits-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1rem;
    color: white;
}

.benefits-list i {
    font-size: 2rem;
    color: #FFD700;
}

.benefits-list strong {
    font-size: 1.1rem;
    color: white;
}

.benefits-list p {
    margin: 0;
    color: #ddd;
    font-size: 0.9rem;
}

.terms-text {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.terms-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.login-link {
    text-align: center;
    margin-top: 1rem;
    color: #666;
}

.login-link a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Responsive design */
@media (max-width: 992px) {
    .signup-container {
        flex-direction: column;
        min-height: auto;
        margin: 10px;
        padding: 20px;
    }

    .left-panel,
    .right-panel {
        width: 100%;
        padding: 20px;
    }

    .left-panel {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .right-panel {
        margin-top: 10px;
    }

    .benefits-list li {
        margin-bottom: 15px;
    }

    .benefits-list i {
        font-size: 1.2rem;
    }

    .benefits-list strong {
        font-size: 0.9rem;
    }

    .benefits-list p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .signup-container {
        width: 95%;
        margin: 5px;
        padding: 15px;
    }

    .left-panel,
    .right-panel {
        padding: 15px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .social-btn {
        font-size: 0.9rem;
        padding: 8px;
    }
}

.form-check-input:checked {
    background-color: #FFD700;
    border-color: #FFD700;
}

.form-check-input:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}



/* Utility Classes */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }