/*Váriaveis de cores*/
:root {
  --cor-principal: #080F24;
  --cor-secundaria: #1E3A8A;
  --cor-terciaria: #1F74FF;
  --cor-quartenaria: #595959;
  --cor-negrito: black;
  --cor-destaque: white;
}

/*Configurações da Página*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    background: linear-gradient(to bottom, var(--cor-secundaria), var(--cor-principal));
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*Clases de uso Geral*/
.esp-lat-ext{
    margin-left: 172px;
    margin-right: 100px;
}

.mar-top10{ margin-top: 10px; }
.mar-bott10{ margin-bottom: 10px; }
.pad10{ padding: 10px; }
.pad20{ padding: 20px; }
.pad30{ padding: 30px; }

.container{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.icone {
    height: 100%;
    border-radius: 100%;
}
.preto {
    padding: 3px;
    background-color: var(--cor-negrito);
}

/*Tela de Login*/
.login{
    width: 60%;
    height: 60%;
    background-color: var(--cor-destaque);
}

.login section{
    display: flex;
    height: 100%;
    width: 100%;
}

/*Inscreva-se*/
.login section .inscrever{
    background-color: #6BA3FF;
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.login section .inscrever .logo{
    display: flex;
    align-items: center;
    width: 100%;
    gap: 5px;
}
.login section .inscrever .logo img{
    width: 25px;
}
.login section .inscrever .logo p{
    font-size: 14pt;
}

.login section .inscrever h1{
    font-size: 30pt;
    color: var(--cor-destaque);
}

/*Opções de Login*/
.login section .inscrever .opcoes{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.login section .inscrever .opcoes button{
    display: flex;
    align-items: center;
    border-radius: 100px;
    height: 40px;
    padding: 7px;
    border: none;
    cursor: pointer;
}
.login section .inscrever .opcoes button p{
    width: 100%;
}

/*Logar*/
.login section .logar{
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 10px;
}
.login section .logar h1{
    font-size: xx-large;
}
.login section .logar a{
    padding-top: 5px;
    font-size: small;
    color: #333;
}

/*Formulário*/
form.form {
    display: flex;
    flex-direction: column;
}
form.form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}
form.form input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 20px;
    border: 1.8px solid #c3c9d9;
    border-radius: 6px;
    font-size: 15px;
    color: #222;
    transition: border-color 0.3s ease;
}
form.form input:focus {
    outline: none;
    border-color: #0077ff;
    box-shadow: 0 0 6px rgba(0, 119, 255, 0.3);
}
form.form input::placeholder {
    color: #51585C;
}
form.form button {
    width: 150px;
    height: 40px;
    background-color: var(--cor-terciaria);
    color: var(--cor-destaque);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    line-height: 100%;
}

/*Configuração da Página para Mobile*/
@media only screen and (max-width:730px) {
    main {
        margin-bottom: 100px;
        margin-top: 40px;
    }
    
    /*Tela de Login*/
    .login {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: calc(100% - 150px);
        background-color: transparent;
    }

    .login section{
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
        height: 100%;
        background-color: var(--cor-destaque);
    }

    /*Inscreva-se*/
    .login section .inscrever{
        background-color: #6BA3FF;
        width: 100%;
        height: 40%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .login section .inscrever .logo{
        display: flex;
        align-items: center;
        width: 100%;
        gap: 5px;
    }
    .login section .inscrever .logo img{
        width: 20px;
    }
    .login section .inscrever .logo p{
        font-size: 14pt;
    }

    .login section div.inscrever h1{
        font-size: 25pt;
        color: var(--cor-destaque);
    }

    /*Opções de Login*/
    .login section .inscrever .opcoes button{
        display: flex;
        align-items: center;
        border-radius: 100px;
        height: 40px;
        padding: 10px;
        border: none;
        cursor: pointer;
    }
    .login section .inscrever .opcoes button p{
        width: 100%;
        font-size: 15pt;
    }

    /*Logar*/
    .login section .logar{
        width: 100%;
        height: 60%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    }

    .login section .logar h1{
        font-size: 30pt;
    }

    .login section .logar a{
        padding-top: 5px;
        font-size: 10pt;
        color: #333;
    }

    /*Formulário*/
    form.form {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: 100%;
    }
    form.form label {
        display: block;
        margin-bottom: 6px;
        font-weight: 600;
        width: 100%;
        color: #333;
        font-size: 20px;
        text-align: start;
    }
    form.form input {
        width: 100%;
        padding: 12px 14px;
        margin-bottom: 0px;
        border: 1.8px solid #c3c9d9;
        border-radius: 6px;
        font-size: 15px;
        color: #222;
        transition: border-color 0.3s ease;
    }
    form.form input[type="submit"] {
        width: 100%;
        height: 40px;
        background-color: var(--cor-secundaria);
        color: var(--cor-destaque);
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }
    form.form button {
        margin-top: 10px;
    }
}