/* Estilos CSS utilizados na contrução das páginas */
*{
    box-sizing: border-box;
}

body{
    display: flex;
    flex-flow: row wrap;

    /* alinhando os elementos horizontalmente */
    justify-content: center; 

    
    /* alinhando os elementos verticalmente */
    align-items: center;

    background: #eee;
    margin: 0;
    /* vw = view width - ocupa toda a área horizontal da página; */
    width: 100vw; 
    /* vh = view heigth - ocupa toda a área vertical da página; */
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
}

form{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    background-color: white;
    padding: 10px 20px 10px;
    border-radius: 30px;
    box-shadow: 0 0 20px #bebebe;
    margin-top: 10px;
    margin-bottom: 10px;
}

h1{
    font-size: 1rem;
    font-weight: 900;
    width: 100%;
    /* border: 1px solid red; */
    text-align: center;
}

input{
    width: 95%;
    height: 60px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding-left: 20%;
    margin-left: 5%;
}

input:focus{
    outline-color: #00c3fe;
}

.btn-blue{
    width: 90%;
    padding: 20px;
    margin: 10px 0 10px 0;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #00c3fe;
    color: white;
    font-weight: bold;
    font-style: 18px;

    /* Para um efeito de transição mais suave */
    transition: 0.5s ease;
}

.btn-blue:hover{
    background-color: #04a3d3;
}

a{
    text-decoration: none;
    color: #414141;
    margin-top: 10px;
}

a:hover{
    color: #00c3fe;
}

a.link{
    color: #00c3fe;
    text-decoration: underline;
}

.input-group{
    width: 95%;
    margin-bottom: 15px;
}

.input-icon{
    width: 60px;
    position: absolute;
}

.input-check{
    display: grid;
    grid-template-columns: auto auto;
}

input[type='checkbox'] {
    text-align: left;
    margin-left: 15px;
    width: 70%;
}

label {
    font-size: 14px;
    margin-top: 15px;
    cursor: pointer;
    text-align: justify;
    margin-right: 12px;
    margin-left: 20px;
}
  
.erro-geral{
    background-color: #c82a2a;
    color: white;
    font-weight: bold;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.erro-input{
    border:1px solid #c82a2a;
}

.erro{
    color: #c82a2a;
    font-weight: 600;
    padding: 5px;
    text-align: center;
}

.sucesso-cadastro{
    background-color: #2ac874;
    color: white;
    font-weight: bold;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.gmail {
    background: red;
    color: white;
    padding: 20px;
    border-radius: 5px;
}

.outlook {
    background: #00aeff;
    color: white;
    padding: 20px;
    border-radius: 5px;
}