/* ============================================
   LOGIN PAGE – IZOLIRAN BEŽ STIL
============================================ */

body.login {
    background: #fff7f1;
}

/* Glavni login container */
body.login .container.login {
    background: #ffffff;
    padding: 35px 45px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    margin: 5em auto 0 auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Logo */
body.login .logo {
    width: 200px;
    margin-bottom: 15px;
}

/* INPUTI */
body.login select,
body.login input[type="text"],
body.login input[type="password"] {
    background: #f7f3ef !important;
    border: 1px solid #d4c9c0 !important;
    border-radius: 8px !important;

    width: 100% !important;
    padding: 12px 14px !important;

    font-size: 16px !important;
    font-weight: 500 !important;
    color: #4a3b2e !important;

    margin-bottom: 18px !important;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

/* Fokus */
body.login select:focus,
body.login input[type="text"]:focus,
body.login input[type="password"]:focus {
    outline: none !important;
    border-color: #c49a6c !important;
    box-shadow: 0 0 5px rgba(196,154,108,0.4) !important;
}

/* Hover */
body.login select:hover,
body.login input[type="text"]:hover,
body.login input[type="password"]:hover {
    border-color: #b9a99b !important;
}

/* Link za nastavitve */
body.login .text-link {
    color: #c49a6c;
    margin-top: 20px;
}
