/* Login Sayfası Stilleri */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--light-color);
    padding: 20px;
    background-image: url('../images/login-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.login-form {
    background: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    max-width: 460px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.login-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-color);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header img {
    width: 220px;
    margin-bottom: 1.5rem;
}

.login-header h2 {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.forgot-password {
    text-align: center;
    margin-top: 1.5rem;
}

.forgot-password a {
    color: var(--medium-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.forgot-password a:hover {
    color: var(--primary-color);
}

.agency-register {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eeeeee;
}

.agency-register p {
    color: var(--medium-color);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.agency-register .btn {
    background-color: var(--white-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.agency-register .btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

/* Login sayfası responsive tasarım */
@media (max-width: 768px) {
    .login-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .login-form {
        padding: 1.5rem;
    }
    
    .login-header img {
        width: 180px;
    }
    
    .login-header h2 {
        font-size: 1.2rem;
    }
}