/* assets/css/login.css */

/* 1. Genel Yapı (Koyu Tema) */
body.login {
    background-color: #091d42; /* PınarTekin Kurumsal Lacivert */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    flex-direction: column;
}

/* 2. Logo Alanı */
body.login div#login h1 a {
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 80px;
    margin-bottom: 20px;
    /* Background-image PHP'den gelecek */
}

/* 3. Form Kutusu */
body.login div#login {
    width: 100%;
    max-width: 400px;
    padding: 0;
    z-index: 2;
}

.login form {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: none;
    padding: 40px 30px;
}

/* 4. Input Alanları */
.login form .input, 
.login form input[type=checkbox], 
.login input[type=text] {
    border-radius: 6px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    box-shadow: none;
    font-size: 16px;
    padding: 8px 12px;
    transition: all 0.2s;
}

.login form .input:focus {
    border-color: #2CD97B;
    box-shadow: 0 0 0 1px #2CD97B;
    background: #fff;
}

/* 5. Butonlar (C-Level Yeşili) */
.wp-core-ui .button-primary {
    background-color: #2CD97B !important;
    border-color: #2CD97B !important;
    width: 100%;
    margin-top: 15px;
    height: 45px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    text-shadow: none;
    box-shadow: 0 4px 10px rgba(44, 217, 123, 0.3);
    transition: all 0.3s;
}

.wp-core-ui .button-primary:hover {
    background-color: #25b869 !important;
    transform: translateY(-2px);
}

/* 6. Alt Linkler */
.login #nav, .login #backtoblog {
    text-align: center;
    padding: 0;
    margin-top: 15px;
}

.login #nav a, .login #backtoblog a {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}

.login #nav a:hover, .login #backtoblog a:hover {
    color: #2CD97B !important;
}

/* 7. WP Uyarı Mesajları */
.login .message, .login .success {
    border-left-color: #2CD97B;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
}
