* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif; 
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.background-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.login-container {
    display: flex;
    width: 80%;
    height: 70%;
    max-width: 1200px;
    margin: 0 auto; 
    position: absolute; 
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%);
}

.left-section {
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: left;
    text-align:left;
    width: 50%; 
}

h1 {
    font-size:2.5rem;
    font-weight:bold;
    color: white;
    margin-bottom: 20px; 
}

.logo-tteosoft {
    width: 350px; 
    height: auto; 
}

.right-section {
    width: 50%; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 35px 20px;
    
}
.title {
    font-weight:bold;
    color: black;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size:35px;
}
/*------------------------------------------------------------------------------------*/
                                        /*FORMULARIO*/
/*------------------------------------------------------------------------------------*/
.login100-form {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background-color: white; 
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ccc; 
    border-right: 2px solid #6F4EA1;
    border-bottom: 2px solid #6F4EA1;
}


.input100 {
    width: 100%;
    padding: 12px 8px; 
    font-size: 16px;
    border: 2px solid #ccc; 
    border-radius: 5px;
    box-sizing: border-box;
    transition: border-color 0.3s ease; 
}

 
.input100:focus {
    border-color: #6F4EA1; 
    outline: none; 
}


.fieldset {
    position: relative;
}

.label-input{
    font-weight:bold;         
}

.btn-show-pass {
    position: absolute;
    right: 10px; 
    top: 71%; 
    transform: translateY(-50%); 
    cursor: pointer;
    color: #6F4EA1; 
    font-size: 25px;
}


.fieldset input:focus {
    border-color: #6F4EA1; 
}

.focus-input100 {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #C600EF; 
}
/*----------------------------ESQUECEU A SENHA*---------------------------------*/


.forgot-password-container {
    margin-top: 3px; 
    display:flex;
    text-align:left;
    justify-content: left;
}


 .forgot-password-container .btn-sucess {
     font-size: 14px;
     color: #6F4EA1;
     background: none;
     border: none;
     cursor: pointer;
     text-decoration: underline;
  }

.forgot-password-container .btn-sucess:hover {
   color: #4e1c9b;
 }

/*------------------------------------------------------------------------------------*/
                                         /*BOTÃO*/
/*------------------------------------------------------------------------------------*/

.form-button-container {
    display: flex;
    justify-content: center; 
    align-items: center; 
    width: 100%;
    margin-top: 20px;
}


.button-background {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #6F4EA1; 
    border-radius: 8px;
    padding: 2px;
    width: 220px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
}


.login-button {
    width: 100%;
    background: transparent;
    border: none;
    color: white;
    font-size: 22px;
    font-weight: bold;
    padding: 8px 0;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s, transform 0.2s;
}


.button-background:hover {
    transform: scale(1.05);
}
/*------------------------------------------------------------------------------------*/
                                         /*RESPONSIVIDADE*/
/*------------------------------------------------------------------------------------*/
@media (max-width: 899px) {
    .login-container {
        flex-direction: column;
        width: 95%;
        height: auto;
        align-items: center;
        text-align: center;
    }

    .left-section, .right-section {
        width: 100%; 
        justify-content: center;
        align-items: center;
    }

    .left-section {
        margin-bottom: 30px;
    }

    .logo-tteosoft {
        width: 350px; 
    }

    .login100-form {
        max-width: 420px; 
        padding: 45px;
    }

    .title {
        font-size: 38px; 
    }

    .input100 {
        padding: 16px 20px; 
        font-size: 18px;
    }

    .label-input {
        font-size: 18px; 
        font-weight: bold;
    }

    .button-background {
        width: 260px;
    }

    .login-button {
        font-size: 22px;
    }

    .forgot-password-container {
        justify-content: center;
        text-align: center;
        margin-top: 15px; 
    }

        .forgot-password-container .btn-sucess {
            font-size: 18px;
            padding: 10px; 
        }
}

@media (max-width: 428px) {
    body {
        background-color: black;
    }

    .login-container {
        flex-direction: column;
        width: 100%;
        height: auto;
        align-items: center;
        text-align: center;
        padding: 10px; 
    }

    .left-section, .right-section {
        width: 100%; 
        justify-content: center;
        align-items: center;
    }

    .left-section {
        margin-bottom: 20px;
        padding: 0 10px; 
    }

    .titulo-login-left {
        font-size: 22px; 
        word-wrap: break-word; 
        max-width: 100%; 
        text-align: center; 
    }

    .logo-tteosoft {
        width: 250px; 
    }

    .login100-form {
        max-width: 320px; 
        padding: 30px; 
    }

    .title {
        font-size: 26px; 
    }

    .input100 {
        padding: 12px 15px;
        font-size: 16px; 
    }

    .label-input {
        font-size: 16px; 
        font-weight: bold;
    }

    .button-background {
        width: 220px; 
    }

    .login-button {
        font-size: 20px;
    }

    .forgot-password-container {
        justify-content: center;
        text-align: center;
        margin-top: 10px; 
    }

        .forgot-password-container .btn-sucess {
            font-size: 16px; 
            padding: 8px; /
        }
}


@media (max-width: 320px) {
    body{
        background-color: black ;
    }
    .login-container {
        width: 95%; 
        height: auto;
        padding: 10px;
    }

    .left-section {
        margin-bottom: 15px; 
    }

    .logo-tteosoft {
        width: 200px; 
    }

    .login100-form {
        max-width: 280px; 
        padding: 20px; 
    }

    .input100 {
        padding: 10px 12px; 
        font-size: 14px; 
    }

    .title {
        font-size: 28px; 
    }

    .button-background {
        width: 180px; 
    }

    .login-button {
        font-size: 18px; 
    }

    .forgot-password-container {
        text-align: center; 
        justify-content: center;
    }
}










