.auth-hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.5);
}
section.auth-hero h1 {
    color: var(--white);
}
.auth-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.auth-form-section {
    padding: 60px 0;
 
}
button.btn-primary {
    font-family: 'Montserrat';
    font-size: 16px;
}
.auth-form-card h2 {
    font-size: 28px;
}
.auth-form-card {
    max-width: 450px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.auth-form-card h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: 8px;
    font-size: 16px;
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.form-footer {
    margin-top: 15px;
    text-align: center;
}

.form-footer a {
    color: var(--primary-color);
    text-decoration: none;
}