/* ==============================
   🧠 Besplatne seanse — Login / Reset Password stil
   ============================== */

body.login {
    background-color: #f6f6f6;
    font-family: 'Montserrat', 'Arial', sans-serif;
    color: #0f103a;
}

/* ✅ Logo */
body.login h1 a {
    background-image: url('../img/besplatne_seanse_logo.png');
    /* promeni ako koristiš drugi fajl */
    background-size: contain;
    background-repeat: no-repeat;
    width: 160px;
    height: 120px;
    margin: 0 auto 20px;
}

/* ✅ Forma */
#login {
    width: 380px;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

/* ✅ Input polja */
body.login form .input,
body.login input[type=text],
body.login input[type=password] {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px;
    width: 100%;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

body.login form .input:focus {
    border-color: #0f103a;
    box-shadow: 0 0 0 2px rgba(15, 16, 58, 0.1);
    outline: none;
}

/* ✅ Dugme */
body.login form .button-primary {
    background-color: #0f103a;
    border: none;
    border-radius: 6px;
    padding: 12px;
    width: 100%;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s ease;
}

body.login form .button-primary:hover {
    background-color: #f16d69;
    cursor: pointer;
}

/* ✅ Linkovi ispod forme */
body.login #nav a,
body.login #backtoblog a {
    color: #0f103a !important;
    text-decoration: none;
    font-size: 14px;
}

body.login #nav a:hover,
body.login #backtoblog a:hover {
    color: #f16d69 !important;
}

/* ✅ Poruke i greške */
body.login .message,
body.login #login_error {
    background: #f6fff5;
    border: 1px solid #cce5cc;
    color: #2e5c2e;
    border-radius: 6px;
    padding: 15px 20px;
    font-size: 14px;
}

/* ✅ Placeholder */
body.login ::placeholder {
    color: #999;
}

.reset-pass-submit input {
    margin-top: 10px !important;
}

.reset-pass-submit .wp-generate-pw {
    background: #f16d69 !important;
    color: #fff;
    border: none;
}

#backtoblog {
    display: none !important;
}

/* ✅ Responsivnost */
@media (max-width: 480px) {
    #login {
        width: 90%;
        padding: 30px 20px;
    }

    body.login h1 a {
        width: 130px;
        height: 100px;
    }
}