*{
    box-sizing: border-box;
}


body{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    background-color: #eee;
    margin: 0;
    width: 100vw;
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
}

form{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    padding: 25px 20px 20px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0px 0px 20px #bebebe;
}

h1{
    font-size: 2rem;
    width: 100%;
    text-align: center;
    font-weight: 900;
}

input{
    width: 95%;
    height: 60px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    margin-left: 5%;
    padding-left: 16%;
    font-size: .8rem;
    font-weight: 600;
}

input:focus{
    outline-color: #00c3ff;
}

input[type='checkbox']{
    display: inline-block;
    height: 20px;
    width: 5%;
    vertical-align: middle;
}

label{
    display: inline-block;
    width: 85%;
    font-size: .9rem;
    margin-top: 15px;
    cursor: pointer;
    word-wrap: break-word;
}

.btn-blue{
    width: 90%;
    margin: 20px 0px;
    padding: 20px;
    cursor: pointer;
    background-color: #00c3ff;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    transition: all .5s ease;
}

.btn-blue:hover{
    background-color: #038bb4;
}

form a{
    text-decoration: none;
    margin: 10px 0px 20px 0px;
    color: #000;
    transition: all .5s ease;
}

form a:hover{
    color: #038bb4;
    text-decoration: underline;
}

.link{
    color: #038bb4;
    text-decoration: underline;
    transition: all .5s ease;
}

.link:hover{
    color: #296679;
}

.input-group{
    width: 90%;
}

.input-icon{
    width: 60px;
    position: absolute;
}

.general-error{
    background-color: #c82a2a;
    color: #fff;
    font-weight: bold;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.error-input{
    border: 1px solid #c82a2a;
}

.error{
    color: #c82a2a;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: .9rem;
}

.success{
    background-color: #2ac874;
    color: #fff;
    font-weight: bold;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.hidden{
    display: none;
}

.text-center{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sites-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.gmail{
    background-color: red;
    color: #fff;
    padding: 15px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: all .5s ease;
}

.gmail:hover{
    background-color: rgb(235, 83, 72);
}

.outlook{
    background-color: blue;
    color: #fff;
    padding: 15px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: all .5s ease;
}

.outlook:hover{
    background-color: rgb(38, 97, 173);
}