/* Swiss Style / Brutalism Login */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #d7ccc8;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Mevsimsel arka plan resimleri */
body.season-ilkbahar {
    background-image: url('/images/seasons/ilk.svg');
}

body.season-yaz {
    background-image: url('/images/seasons/yaz.svg');
}

body.season-sonbahar {
    background-image: url('/images/seasons/son.svg');
}

body.season-kis {
    background-image: url('/images/seasons/kis.svg');
}

.login-card {
    background: #ffffff;
    width: 100%;
    max-width: 380px;
    padding: 40px 40px;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 30px;
    color: #000000;
    text-align: left;
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.login-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666666;
    margin-bottom: 30px;
    font-weight: 300;
    font-style: italic;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    color: #888888;
    margin-bottom: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"] {
    width: 100%;
    padding: 4px 0 8px 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #000000;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    outline: none;
    transition: border-color 0.3s ease;
    background: transparent;
}

.form-group input::placeholder {
    color: #aaaaaa;
    font-weight: 300;
}

.form-group input:focus {
    border-bottom-color: #000000;
}

.password-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.password-header label {
    margin-bottom: 0;
}

.forgot-link {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #000000;
    text-decoration: none;
    font-weight: 400;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: #000000;
    color: #ffffff;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.btn-login:hover {
    background: #333333;
}

.btn-login:active {
    transform: scale(0.98);
}

.remember-me {
    display: flex;
    align-items: center;
    margin-top: -10px;
    margin-bottom: 5px;
}

.remember-me input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: #000000;
}

.remember-me label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #666666;
    cursor: pointer;
    user-select: none;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
}

.error-message {
    color: #000000;
    font-size: 11px;
    margin-bottom: 15px;
    padding: 8px 0;
    border-bottom: 1px solid #000000;
    font-weight: 400;
}

.text-danger {
    color: #cc0000;
    font-size: 10px;
    margin-top: 5px;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 480px) {
    .login-card {
        padding: 30px 25px;
        max-width: 100%;
    }

    .logo-title {
        font-size: 24px;
    }
}
