@charset "UTF-8";

.auth-page{
    display: flex;
    justify-content: center;
    padding: 3em 1em;
}
.auth-form{
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: .6em;
}
.auth-form h1{
    font-size: 1.6rem;
    margin-bottom: .4em;
    text-align: center;
}
.auth-form label{
    font-size: .9rem;
    font-weight: bold;
    color: #333;
    margin-top: .5em;
}
.auth-form input[type="email"],
.auth-form input[type="password"]{
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}
.auth-form input:focus{
    outline: 2px solid var(--destaque);
    border-color: transparent;
}
.auth-checkbox{
    display: flex;
    align-items: flex-start;
    gap: .5em;
    font-size: .85rem;
    font-weight: normal;
    color: #444;
    line-height: 1.4em;
}
.auth-checkbox input{ margin-top: 3px; }
.auth-hint{
    font-size: .8rem;
    color: #777;
    margin: 0;
}
.auth-error{
    color: #b00020;
    background: #fdecea;
    border: 1px solid #f5c2c0;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: .9rem;
}
.auth-separator{
    text-align: center;
    color: #999;
    font-size: .85rem;
    margin: .3em 0;
}
.google-signin{
    display: flex;
    justify-content: center;
    min-height: 1px; /* não ocupa espaço visível enquanto não configurado */
}
.auth-switch{
    text-align: center;
    font-size: .9rem;
    margin-top: 1em;
}
.auth-switch a{
    color: var(--azul);
    font-weight: bold;
}
