/* forms.css */

/* Estiliza mensagens de alerta */
#alert-msg {
    opacity: 1;
    transition: opacity 0.5s ease;
}

#alert-msg.fade-out {
    opacity: 0;
}

/* Preview da imagem */
#preview {
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #e5e7eb; /* Tailwind gray-200 */
}

/* Inputs customizados */
input[type="file"] {
    cursor: pointer;
}

/* Botão de upload da imagem */
label[for="foto"] {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}
