/* EDEP Admin Paneli Giriş - Özel Stil Dosyası */
/* --- Kurulum stiliyle tutarlılık korunarak oluşturulmuştur --- */

:root {
    --primary-color: #F7941D;
    --dark-blue: #1E2A5D;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #f4f7fc;
    --card-bg: #ffffff;
    --border-color: #ddd;
    --error-bg: #ffdddd;
    --error-border: #ffaaaa;
    --error-text: #d8000c;
    --font-family: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
}

.login-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.logo {
    max-width: 80px;
    margin-bottom: 1.5rem;
}

h2 {
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.message-area .error {
    background-color: var(--error-bg);
    border: 1px solid var(--error-border);
    color: var(--error-text);
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.2);
}

.form-options {
    text-align: right;
    margin-bottom: 1.5rem;
}

.form-options a {
    color: var(--dark-blue);
    font-size: 0.85rem;
    text-decoration: none;
}

.form-options a:hover {
    text-decoration: underline;
}

.actions {
    margin-top: 1rem;
}

.btn {
    display: block;
    width: 100%;
    padding: 0.85rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}