@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
    font-family: 'Poppins', sans-serif;
}

body {
    background-image: linear-gradient(rgba(29, 29, 29, 0.7), rgba(29, 29, 29, 0.7)), url(../img/background_login.jpg);
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    font-family: "Poppins", serif;
    margin: 0;
    height: 100%;
    min-height: 100vh;
}

a {
    text-decoration: none;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

h2 {
    margin: 0;
    color: white;
    font-size: 16px;
    font-weight: 400;
}

.input_login {
    width: 100%;
    padding: 0.35rem;
    border-radius: 12px;
    font-size: 16px;
    border: 1.5px solid lightgrey;
    outline: none;
    box-sizing: border-box;
}

.input_entrar {
    width: 100%;
    padding: 0.4rem;
    border-radius: 12px;
    font-size: 16px;
    color: white !important;
    text-decoration: none;
    text-align: center;
    outline: none;
    background-color: orange;
    box-sizing: border-box;
    border: none;
    margin-top: 0.5rem;
}

.input_enviar {
    width: 100%;
    padding: 0.4rem;
    border-radius: 12px;
    font-size: 16px;
    color: white !important;
    text-decoration: none;
    text-align: center;
    outline: none;
    background-color: orange;
    box-sizing: border-box;
    border: none;
    margin-top: 0.5rem;
}

.div_dois {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.link-texto {
    color: orange;
    text-decoration: none;
}

a:visited {
    color: orange;
    text-decoration: none;
}

.texto-cadastro {
    font-size: 14px;
    text-align: center;
}

.texto-informativo {
    font-size: 16px;
    text-align: center;
}

.container_login {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 1rem;
}

.div_inputs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.senha-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.senha-wrapper input {
    width: 100%;
    padding-right: 40px;
}

.toggle-senha {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
    font-size: 18px;
    transition: color 0.3s;
}

.toggle-senha:hover {
    color: #333;
}