﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding: 20px; */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

    .logo img {
        width: 40px;
        height: 40px;
    }

    .logo h1 {
        color: #333;
        font-size: 2.5rem;
    }

.login-container {
    background: #7ebf4f;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 0px;
    flex-direction: column;
    align-items: center;
}

.login-content {
    background: #7ebf4f;
    padding: 30px;
    /* border-radius: 8px; */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    width: 100%;
    max-width: 550px;
}

.header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

    .header span:last-child {
        color: #666;
    }

input {
    width: 100%;
    padding: 12px;
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    font-size: 10pt;
    color: #fff;
    ;
}

    .remember-forgot a {
        color: #fff;
        text-decoration: none;
    }

    .remember-forgot label {
        display: flex;
        text-wrap: nowrap;
        align-items: center;
        min-width: 110px;
    }

.buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-login {
    background-color: #333;
    color: white;
}

.btn-fingerprint {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
}

.footer {
    margin-top: 30px;
    text-align: center;
    color: #333;
    font-size: 9pt;
    line-height: 1.5;
}

    .footer img {
    }

    .footer a {
        color: #333;
        text-decoration: none;
    }

        .footer a:hover {
            text-decoration: underline;
        }

.login-header {
    color: white;
    padding: 12px 0;
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: 12pt;
}


.login-text {
    font-size: 16px;
    color: #ffffff;
}

.separator {
    margin: 0 10px;
    color: rgb(63 63 63);
}

.self-service {
    color: rgb(63 63 63);
}

.icons {
    display: flex;
    gap: 15px;
}

.icon {
    color: rgb(63 63 63);
    cursor: pointer;
    font-size: 16pt;
    font-weight: bolder;
}

body[dir="ltr"] .icons {
    margin-left: auto;
}
