@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body{
    overflow-y: hidden;
}

main{
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

/* Container */

.left_side{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: url(./bg_login.jpg);
    background-size: cover;
    background-repeat: no-repeat; 
    background-position: center;
    box-shadow: inset -10px 0 20px var(--primary-color);

}

.top{
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px;
}

.bg_login{
    width: 100%;
    height: 100%;
}

.right_side {
    display: flex;
    width: 100%;
    min-height: 100vh; 
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 15px;
    gap: 30px;
    background: var(--background-image), url(./bg_header.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.form_login{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
    gap: 15px;
}

.input_container {
    position: relative;
    width: 60%;
    display: flex;
    align-items: center;
}

.input_container input {
    background: transparent;
    width: 100%;
    border: none;
    color: #FFF;
    border-bottom: 2px solid #FFF;
    padding: 15px 40px; 
    outline: none;
}

.input_container input:-internal-autofill-selected {
    background-color: transparent !important;
}

.input-icon {
    position: absolute;
    left: 10px;
    font-size: 1.4em;
    color: #FFF;
    pointer-events: none; /* não atrapalha clique no input */
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.4em;
    color: #FFF; 
}


::-webkit-input-placeholder {
    color: #FFF;
}

:-moz-placeholder { 
    color: #FFF; 
}

::-moz-placeholder {  
    color: #FFF;
}

:-ms-input-placeholder {  
    color: #FFF;
}

.forgotPass{
    color: var(--secondary-color);
    cursor: pointer;
    margin-top: 10px;
}

.btn_logar{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5em;
    background: var(--secondary-color);
    color: #FFF;
    border: none;
    cursor: pointer;
}

/* Oculta a imagem em tablet's e smartphones */

@media (max-width: 768px) {
    .left_side {
        display: none;
    }
}
