/**
 * PELSA - Login Page Styles
 * Login sayfasına özel stileler
 */

.login-container {
    width: 100%;
    max-width: 450px;
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.login-header {
    text-align: center;
    margin-bottom: 35px;
}

.login-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.login-header p {
    font-size: 15px;
    color: #6b7280;
}

.login-button {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #E20110 0%, #c60000 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    margin-bottom: 16px;
}

.login-button:hover {
    background: linear-gradient(135deg, #c60000 0%, #a60000 100%);
    box-shadow: 0 6px 20px rgba(226, 1, 16, 0.25);
    transform: translateY(-2px);
}

.login-button:active {
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 480px) {
    .login-container {
        padding: 30px 20px;
    }

    .login-header h1 {
        font-size: 20px;
    }

    .logo-section img {
        height: 40px;
    }
}
