.teclado-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 250px;
    margin: 0 auto;
}

.teclado-grid button {
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 1px solid #eee;
    background: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.2s;
}

.teclado-grid button:active {
    background: var(--primary);
    color: white;
}

.status-msg {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    font-weight: bold;
}

.hidden {
    display: none !important;
}

/* Container para cada campo */
.form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Alinha à esquerda */
    margin-bottom: 12px;
}

/* Estilo das Labels pequeninas */
#card-registo label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    margin-bottom: 4px;
    margin-left: 2px;
    font-weight: 700;
}

/* Ajuste dos inputs para não ficarem colados */
#card-registo input {
    width: 100%;
    box-sizing: border-box;
    /* Garante que o padding não aumenta a largura */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.pin-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
}

.pin-dots span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #6a11cb;
    display: inline-block;
}

.pin-dots span.filled {
    background-color: #6a11cb;
}

.hidden {
    display: none !important;
}