/* ======================================================
   LOGIN PAGE – e-Gestiune Barrier
   Stil modern, profesional, galben / negru
   ====================================================== */

/* Reset minim */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

/* ================= PAGE BACKGROUND ================= */
.login-page {
    min-height: 100vh;
    background: radial-gradient(circle at top,#2a2a2a,#0f0f0f 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* ================= LOGIN CARD ================= */
.login-card {
    width: 100%;
    max-width: 420px;
    background: #111;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.7),inset 0 0 0 1px rgba(255,237,0,0.08);
    text-align: center;
}

/* ================= LOGO ================= */
.logo {
    max-width: 350px;
    width: 100%;
    display: block;
    margin: 0 auto 5px auto;
}

/* ================= TITLU ================= */
.login-card h1 {
    color: #ffed00;
    font-size: 30px;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

/* ================= SUBTITLU Text "Bine ati venit in app egestiune" ================= */
.subtitle-egestiune {
    margin-bottom: 0px;
}
/* ================= SUBTITLU ================= */
.subtitle {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.4;
}

.subtitle strong {
    color: #ffed00;
}

/* ================= FORM ================= */
#loginForm {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ================= INPUTS ================= */
#loginForm input {
    height: 46px;
    padding: 0 14px;

    border-radius: 10px;
    border: 1px solid #333;
    background: #1a1a1a;

    color: #fff;
    font-size: 15px;

    transition: all 0.2s ease;
}

#loginForm input::placeholder {
    color: #888;
}

/* Focus input */
#loginForm input:focus {
    outline: none;
    border-color: #ffed00;
    box-shadow: 0 0 0 2px rgba(255,237,0,0.15);
}

/* ================= BUTTON ================= */
#loginForm button {
    margin-top: 10px;
    height: 48px;

    background: #ffed00;
    color: #000;

    border: none;
    border-radius: 12px;

    font-size: 16px;
    font-weight: bold;
    cursor: pointer;

    transition: all 0.25s ease;
}

/* Hover */
#loginForm button:hover {
    background: #000;
    color: #ffed00;
    box-shadow: inset 0 0 0 2px #ffed00;
}

/* ================= MESSAGE (ERROR / SUCCESS) ================= */
#msg {
    color: #fff;
    margin-top: 10px;
    font-size: 14px;
    min-height: 18px;
}

/* Poți seta din JS:
   #msg.style.color = "red" / "green"
*/

/* ================= FOOTER ================= */
.footer {
    margin-top: 30px;
    font-size: 12px;
    color: #777;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
    }

    .login-card h1 {
        font-size: 26px;
    }
}
