* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
:root{
    --cor0: #c5ebd6;
    --cor1: #83e1ad;
    --cor2: #3ddc84;
    --cor3: #2fa866;
    --cor4: #1a5c37;
    --cor5: #063d1e;

}

body {
    background: linear-gradient(
        90deg,
        #41b883,
        #00d4ff
    );
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
    
}
.container {
    border: 2px solid #fff;
    padding:30px 40px;
    width: 40%;
    min-width: 350px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    margin-bottom: 50px;
    margin: auto;
}
.centralizar{
    text-align: center;
    margin-top: 5%;
    margin-bottom: 2%;
}

h1 {
    color:white;
    font-size: 2rem;
    width: 100%;
    text-align: center;
    font-weight: 900;
    margin-top: 2%;
    margin-bottom: 2%;
}

input {
    width: 100%;
    display: flex;
    font-size: 1rem;
    border: 2px solid #d1d3d4;
    border-radius: 5px;
    padding: 12px;
    font-weight: 500;
    margin: auto;
    margin-bottom: 10px;

}

input:focus {
    outline-color: var(--cor3);
}

.btn-blue {
    width: 25%;
    border-radius: 5px;
    font-size: 0.8rem;
    border: none;
    background-color: #41b883;
    color: #fff;
    cursor: pointer;
    height: 50px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-radius: 5px;
    transition: 0.5s ease;
}
#logo{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 30vh;
}

.btn-blue:hover {
    background: #038bb4;
}
.new-task-button{
    width: 30%;
    border-radius: 5px;
    font-size: 1rem;
    border: none;
    background-color: #41b883;
    color: #fff;
    padding: 12px;
    margin-left: 12px;
    cursor: pointer;
}
.new-task-button:hover{
    background: rgba(49, 5, 153, 0.37);
    transition: all .5s ease;
}

.link {
    color: white;
    text-decoration: underline;
}

.input-group {
    width: 100%;
    justify-content: center;
    align-items: center;
}
#ultimo + div{
    visibility: hidden;
}
footer p{
    color: white;
    text-align: center;
    font-style: bold;
    font-size: 0.8rem;
    padding: 10px;
    border-radius: 10px;
    margin-top: 40px;
}

#aindaNaoTenhoConta {
    text-decoration: none;
    color: white;
}

#jaTenhoUmaConta {
    text-decoration: none;
    color: white;
}

#link-rodape{
    font-style: bold;
    font-style: italic;
}

input[type='checkbox'] {
    display: inline-block;
    height: 15px;
    width: 5%;
    vertical-align: middle;
}

label {
    display: inline-block;
    width: 85%;
    font-size: 13px;
    margin-top: 15px;
    cursor: pointer;
    word-wrap: break-word;
}

.erro-geral {
    background: #c82a2a;
    color: white;
    font-weight: bold;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 15px;
}

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

.erro {
    color: #c82a2a;
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 14px;
}

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

.oculto {
    display: none;
}

.text-center {
    color: white;
    text-align: center;
    max-width: 800px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
lottie-player{
    margin-bottom: -50px;
}
