﻿    /* Estilos gerais */
    .login-page-body {
    background: #fff;
    }

    .login-page-container {
    display: flex;
    }

    .login-left {
    flex: 1;
    background: #0059ec;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100vh;
    }

    .login-right {
    flex: 1.2;
    background: #fff;
    height: 100vh;
    }

    /* Container da imagem e título no lado esquerdo */
    .login-image-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    }

    .login-title-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    /* Imagem e logo */
    .logo-login {
    object-fit: cover;
    width: 100%;
    max-height: 60%;
    height: 60%;
    }

    .login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
    }

    /* Texto da seção de login */
    .login-access-text {
    padding: 2rem 0 3px;
    font-weight: 600;
    }

    .login-description-text {
    padding-bottom: 2rem;
    color: #0059ec;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: monospace;
    text-align: center;
    }

    /* Formulário */
    .login-input {
    width: 100%;
    max-width: 350px;
    padding: 10px 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
    outline: none;
    }

    .login-input:focus {
        border-color: #0059ec;
    }

    .login-button {
    width: 100vw;
    max-width: 350px;
    padding: 10px 15px;
    background-color: #0059ec;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    }

    .login-button:hover {
    background-color: #0046b0;
    }

    .login-button:active {
    background-color: #003a96;
    }

    .form-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    }

    .form-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .password-container {
    position: relative;
    width: 100%;
    }

    .password-container input {
    width: 100%;
    padding-right: 40px;
    }

    .password-toggle {
    position: absolute;
    top: 1.5rem;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    }

    .password-toggle svg {
    width: 24px;
    height: 24px;
    }
