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

body{
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/background_login.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: white;
    font-family: "Poppins", sans-serif;
    background-position: 50%;
    margin: 0;
    width: 100%;
    min-height: 100vh;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

body::-webkit-scrollbar {
    width: 0px;
    background: transparent;
  }

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container_login{
    color: black;
    margin: 2rem;
    padding: 0.8rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 400px;
    margin: 1rem;
    box-sizing: border-box;
}

.img_logo{
    width: 300px;
}

.titulo_card{
    font-weight: 600;
    font-size: 22px;
    margin: 0;
}

.descricao_card{
    font-weight: 400;
    font-size: 14px;
    color: black;
    margin: 0;
}

.titulo_input{
    font-weight: 500;
    font-size: 16px;
    margin: 0;
}

.input_card{
    width: 100%;
    height: 40px;
    padding: 12px;
    border-radius: 12px;
    border: 1.5px solid lightgrey;
    outline: none;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0px 0px 20px -18px;
    resize: none;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.btn_card{
    background-color: #98CB00;
    border: none;
    box-sizing: border-box;
    color: black;
    cursor: pointer;
    outline: none;
    text-align: center;
    box-shadow: rgba(0, 0, 0, .1) 0 2px 4px 0;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 12px;
    width: 100%;
    font-family: "Poppins", sans-serif;
}

.texto_espaco{
    margin-top: 0.3rem;
}

a{
    text-decoration: none;
    color: black;
}

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

.div_btn{
    display: flex;
    flex-direction: column;
    align-items: center;
}