/* Logo circular */
.logo-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px auto;
    border: 4px solid #8e44ad; /* lila */
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Espaciado de campos */
.form-group {
    margin-bottom: 1rem;
}

/* Botón personalizado */
.au-btn--lila {
    background-color: #8e44ad !important; /* lila */
    border: none;
    color: #fff;
    font-weight: bold;
    transition: background-color 0.3s;
}
.au-btn--lila:hover {
    background-color: #732d91 !important; /* lila más oscuro al hover */
}
