.irregular-borders {
    border-radius: 20px 50px 30px 10px;
}

input.irregular-borders {
    border-radius: 20px 50px 30px 10px;
    border: 2px solid lightgray;
    background-color: #f0f0f0;
    padding: 10px;
    font-size: 1rem;
    color: #333;
}

/* Estilos spinner carga creación cuenta cliente */
#register-spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: sans-serif;
}

.spinner-content p {
    font-size: 1.2rem;
    margin-top: 1rem;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 5px solid #ccc;
    border-top-color: #4DA687;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}