* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    background:
        linear-gradient(
            135deg,
            #071d38,
            #0b4f86
        );

    min-height: 100vh;
}

.login-page {

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
}

.login-card {

    width: 100%;
    max-width: 420px;

    background: #ffffff;

    border-radius: 18px;

    padding:
        38px
        36px
        30px;

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, 0.28);
}

.brand {

    text-align: center;

    margin-bottom: 10px;
}

.logo {

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 10px;

    border-radius: 16px;

    background: #0b5fa5;

    color: white;

    font-size: 32px;
}

.brand h1 {

    margin: 0;

    font-size: 29px;

    color: #0b3157;

    letter-spacing: 1px;
}

.company {

    font-size: 12px;

    margin-top: 3px;

    letter-spacing: 2px;

    color: #718096;
}

.portal-title {

    margin:
        25px
        0
        24px;

    text-align: center;

    font-size: 15px;
    font-weight: 700;

    color: #0b5fa5;

    letter-spacing: 1px;
}

label {

    display: block;

    margin-bottom: 7px;

    font-size: 13px;

    font-weight: 600;

    color: #344054;
}

input[type="text"],
input[type="password"] {

    width: 100%;

    height: 48px;

    padding:
        0
        14px;

    border:
        1px solid #d0d5dd;

    border-radius: 9px;

    outline: none;

    font-size: 15px;

    margin-bottom: 18px;
}

input:focus {

    border-color: #0b67b2;

    box-shadow:
        0 0 0 3px
        rgba(11, 103, 178, 0.10);
}

.password-box {

    position: relative;
}

.password-box input {

    padding-right: 50px;
}

.eye {

    position: absolute;

    right: 8px;
    top: 8px;

    width: 34px;
    height: 34px;

    border: none;

    background: transparent;

    cursor: pointer;

    font-size: 17px;
}

.remember {

    margin-top: -3px;
    margin-bottom: 20px;
}

.remember label {

    font-weight: 400;

    display: flex;

    align-items: center;

    gap: 8px;
}

.login-button {

    width: 100%;
    height: 50px;

    border: 0;

    border-radius: 9px;

    background: #0b5fa5;

    color: white;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;
}

.login-button:hover {

    background: #084c85;
}

.error {

    background: #fff1f0;

    color: #b42318;

    border:
        1px solid
        #fecdca;

    padding: 10px;

    margin-bottom: 18px;

    border-radius: 8px;

    text-align: center;

    font-size: 13px;
}

.security {

    text-align: center;

    margin-top: 22px;

    color: #667085;

    font-size: 12px;
}

.footer {

    margin-top: 24px;

    padding-top: 18px;

    border-top:
        1px solid
        #eaecf0;

    text-align: center;

    font-size: 10px;

    color: #98a2b3;

    letter-spacing: 0.6px;
}