.container {
    max-width: 400px;
    margin: 80px auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

h1 {
    margin-bottom: 20px;
    text-align: center;
}

input,
button,
.btn-guest {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 8px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
}

/* INPUT */
input {
    border: 1px solid #ccc;
}

/* BOTÃO LOGIN */
button {
    background: green;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background: darkgreen;
}

/* BOTÃO VISITANTE */
.btn-guest {
    display: block;
    text-align: center;
    text-decoration: none;
    margin-top: -12px;
    background: #f1f1f1;
    color: #2d5c3f;
    border: 1px solid #ccc;

    cursor: pointer;
}

.btn-guest:hover {
    background: #e0e0e0;
}

/* ERRO */
.erro {
    color: red;
}

.cadastro-text {
    margin-top: 15px;
    font-size: 14px;
    align-self: center;
}

.cadastro-text a {
    color: green;
    font-weight: bold;
    text-decoration: none;
}

.cadastro-text a:hover {
    text-decoration: underline;
}

.senha-container {
    position: relative;
    width: 100%;
}

.senha-container input {
    padding-right: 40px; /* espaço pro olho */
}

.olho {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #666;
}