@import "form.css";

main {
    background: linear-gradient(45deg, #54fce3, #3f3ff9, #1a0e38);
}

form {
    margin: 0 2rem;
    background: white;
    box-shadow: 0 0 0 0;
}

.botoes {
    margin: 2rem 0;
    justify-content: space-between;
}

.botoes > button, .botoes > a.button {
    flex: 0 1 100%;
    margin: 0;
    border-radius: 10px;
}

.botoes button.primario, .botoes a.button.primario, .butbot.primario {
    background: var(--azul-profundo);
    color: white;
}

.botoes button.primario:hover, .botoes a.button.primario:hover, .butbot.primario:hover {
    color: var(--azul-turquesa);
}

.botoes > a.button.link {
    color: #f2f2f2;
    border: none;
}

.botoes button.link:hover, .botoes a.button.link:hover {
    border: none;
    color: var(--azul-turquesa);
}

.campos {
    margin: 2rem 0;
}

body {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

header {
    display: none;
}

p {
    margin: 1rem 0;
}

h1 {
    text-align: center;
    color: #54fce3;
}

p {
    text-align: center;
    color: #f2f2f2;
}

@media (min-width: 768px) {
    body.menu-docado #alerta {
        left: 50%;
    }
}

.email {
    font-weight: bold;
    margin-bottom: 0;
}

.campos > .campo > .rotulo label, .campos > .campo > .controle label {
    color: #f2f2f2;
    font-size: 0.8rem;
}

.campos > .campo input,
.campos > .campo input:hover,
.campos > .campo input:focus,
.campos > .campo input:active,
.campos > .campo input:valid,
.campos > .campo input:invalid {
    background: transparent;
    color: #f2f2f2;
    border-bottom: 2px solid #f2f2f2;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    /*-webkit-transition: "color 9999s ease-out, background-color 9999s ease-out";*/
    -webkit-transition-delay: 9999s;
}

.campos > .campo > .mensagem {
    font-style: italic;
    color: #f2f2f2;
    font-size: 0.8rem;
    text-align: left;
}

input:not([type=radio]):not([type=checkbox]):not([type=range]), textarea {
    border-radius: 0;
}