.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 19px;
}

.input-group {
    background: #f0f0f5;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.input-group-text {
    background: transparent;
    border: none;
    color: #585757;
    padding-left: 18px;
    padding-right: 8px;
}

.input-group .form-control {
    background: transparent;
    border: none;
    padding-left: 0;
}

.input-group .form-control:focus {
    background: transparent;
}

.input-group .form-control::placeholder {
    color: #585757;
}

.form-control,
.form-select {
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f0f0f5;
}

.form-control:focus,
.form-select:focus {
    background: #f0f0f5;
    border: none;
    box-shadow: none;
    outline: none;
}

.gender-toggle {
    display: flex;
    gap: 0;
    border-radius: 25px;
    overflow: hidden;
    background: #f0f0f5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.gender-toggle input[type="radio"] {
    display: none;
}

.gender-toggle label {
    flex: 1;
    padding: 12px;
    text-align: center;
    background: transparent;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin: 0;
    font-weight: 500;
}

.gender-toggle label:first-of-type {
    border-radius: 25px 0 0 25px;
}

.gender-toggle label:last-of-type {
    border-radius: 0 25px 25px 0;
}

.gender-toggle input[type="radio"]:checked+label {
    background: #5a67d8;
    color: white;
}

.form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #5a67d8;
    border-color: #5a67d8;
}

.form-check-label {
    margin-left: 8px;
    color: #666;
    font-size: 0.9rem;
    cursor: pointer;
}

.form-check-label a {
    color: #666;
    text-decoration: none;
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background: #5a67d8;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
    background: #4a56c7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(90, 103, 216, 0.3);
}

.login-link {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

.login-link a {
    color: #5a67d8;
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}

.country-select {
    max-width: 90px;
    background: transparent;
    border: none;
    padding-left: 18px;
}

.country-select:focus {
    background: transparent;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 991px) {
    .login-container {
        flex-direction: column;
    }

    .hero-section {
        min-height: 40vh;
        padding: 40px 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .form-section {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .form-heading {
        font-size: 1.5rem;
    }

    .form-section {
        padding: 30px 20px;
    }

    .hero-section {
        padding: 30px 20px;
    }
}