/* Geral */

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
    font-family: 'poppins', Helvetica;
    color: #323232;
    border: none;
}

body {

    background: url(../img/background2.jpeg) center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;

}

textarea:focus, input:focus {   /* Revove margem ao seleciona uma caixa input */
    outline: none;
}

a, label {
    font-size: .8rem; /* 16 * .8 = X */
}

a:hover {       /* Cor dos links ao passar o mause */
    color: #08558b;
}

/* Logo */
#logo {
    display: flex;
    justify-content: center;
    height: 50px;
}

/* container login */

#container {    /*criado div para o card de login */
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10vh;   /*define margem superior baseado na tela */
}

#login-container {
    background-color: #ffffffc2;
    width: 350px;
    height: 528px;
    border-radius: 12px;    /* Suavisa os cantos do card */
    padding: 20px 30px;
    text-align: center;
    box-shadow: 3px 3px 1px 0px #00000050;   /* Cria uma sobra no card */
}

/* formulario */

form {
    margin-top: 30px;
    margin-bottom: 20px;
}

label, input {
    display: flex;
    width: 100%;
    text-align: left;
}

label {
    font-weight: bold;
}

input {
    background-color: #ffffff20;    /* Cor de fundo do iput e opacidade */
    border-radius: 5px;
    border-bottom: 2px solid #323232;
    padding: 10px;
    font-size: .9rem;
    margin-bottom: 20px;
}

input:focus {
    border-bottom: 2px solid #08558b;
}

#forgot-pass {
    text-align: right;
    display: block;   
}

/* Botao de login */

input[type="submit"] {
    display:flex;
    justify-content: center;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    height: 40px;
    border-radius: 20px;
    margin-top: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, #000000, #F05B32);
    cursor: pointer;
}

input[type="submit"]:hover {
    background: linear-gradient(-135deg, #000000, #F05B32);
    transition: .5s;
}

/* redes sociais */ 

#social-container, #social-container p {
    margin-bottom: 10px;   
}

#icones-redes-sociais img{  
    width: 2.5rem; 
}

#icones-redes-sociais {
    display: flex;
    justify-content: center;
    gap: 8%;

}
/* registrar */

#register-container p {
    margin-bottom: 10px;
}
