/* =========================
   GENERAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {

    font-family: Arial, Helvetica, sans-serif;

    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    background: linear-gradient(
        135deg,
        #003366,
        #0066a1
    );

    padding: 20px;

}


/* =========================
   LOGIN CONTAINER
========================= */

.login-container {

    width: 100%;

    max-width: 450px;

    background: #ffffff;

    padding: 40px;

    border-radius: 12px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2);

}


/* =========================
   HEADER
========================= */

.login-header {

    text-align: center;

    margin-bottom: 30px;

}


.logo {

    width: 90px;

    height: 90px;

    object-fit: contain;

    margin-bottom: 15px;

}


.login-header h1 {

    color: #003366;

    font-size: 26px;

    margin-bottom: 8px;

}


.login-header p {

    color: #666;

    font-size: 15px;

}


/* =========================
   FORM
========================= */

.form-group {

    margin-bottom: 20px;

}


.form-group label {

    display: block;

    margin-bottom: 8px;

    font-weight: bold;

    color: #333;

}


.form-group input {

    width: 100%;

    padding: 13px;

    border: 1px solid #ccc;

    border-radius: 6px;

    font-size: 15px;

    outline: none;

    transition: 0.3s;

}


.form-group input:focus {

    border-color: #0066a1;

    box-shadow:
        0 0 0 3px rgba(0, 102, 161, 0.1);

}


/* =========================
   SHOW PASSWORD
========================= */

.show-password {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 20px;

    font-size: 14px;

    color: #555;

}


.show-password input {

    cursor: pointer;

}


/* =========================
   LOGIN MESSAGE
========================= */

.login-message {

    text-align: center;

    min-height: 20px;

    margin-bottom: 15px;

    font-size: 14px;

}


/* =========================
   LOGIN BUTTON
========================= */

.login-button {

    width: 100%;

    padding: 14px;

    border: none;

    border-radius: 6px;

    background: #003366;

    color: white;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;

}


.login-button:hover {

    background: #005b96;

}


/* =========================
   BACK HOME
========================= */

.back-home {

    text-align: center;

    margin-top: 25px;

}


.back-home a {

    color: #003366;

    text-decoration: none;

    font-size: 14px;

}


.back-home a:hover {

    text-decoration: underline;

}


/* =========================
   MOBILE
========================= */

@media (max-width: 500px) {

    .login-container {

        padding: 30px 20px;

    }


    .login-header h1 {

        font-size: 22px;

    }

}