@import url('https://fonts.googleapis.com/css2?family=Playwrite+DE+Grund:wght@100..400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    height: 100vh;
    overflow: hidden;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

/* Efecto de partículas en el fondo */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(111, 66, 193, 0.05) 2px, transparent 2px), 
                     radial-gradient(circle, rgba(62, 0, 112, 0.03) 1px, transparent 1px);
    background-size: 30px 30px, 20px 20px;
    background-position: 0 0, 15px 15px;
    animation: particlesMovement 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes particlesMovement {
    0% {
        background-position: 0 0, 15px 15px;
    }
    100% {
        background-position: 100px 100px, 115px 115px;
    }
}

.container {
    display: flex;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-sizing: border-box;
}

.left-section {
    width: 40%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
    z-index: 2;
    padding: 0 3%;
}

.left-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(111, 66, 193, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    animation: pulseGradient 6s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes pulseGradient {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.register-frame {
    background-color: transparent;
    border-radius: 12px;
    padding: 15px;
    width: 85%;
    max-width: 400px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    backdrop-filter: blur(10px);
    height: fit-content;
    max-height: 95vh;
    overflow: visible;
    margin: 0 auto;
    box-sizing: border-box;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.register-frame h2 {
    background: linear-gradient(90deg, #3e0070, #6f42c1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-size: 2.8rem;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.register-frame p.welcome-text {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 30px;
    font-weight: 300;
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.input-container {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.input-container:focus-within {
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.15);
}

.password-toggle {
    position: absolute !important;
    right: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    cursor: pointer;
    color: #6f42c1 !important;
    user-select: none;
    z-index: 10 !important;
    transition: all 0.2s ease;
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background-color: rgba(111, 66, 193, 0.1) !important;
    box-shadow: none !important;
    font-size: 14px !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    vertical-align: middle !important;
}

.password-toggle:hover {
    background-color: rgba(111, 66, 193, 0.2);
    color: #3e0070;
}

.input-container input,
.iti .iti__tel-input {
    width: 100%;
    padding: 16px 50px;
    margin: 0;
    border: none;
    border-radius: 8px;
    background-color: rgba(244, 245, 248, 0.8);
    color: #333;
    font-size: 15px;
    font-weight: 400;
    box-sizing: border-box;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.input-container input:focus,
.iti .iti__tel-input:focus {
    background-color: #fff;
    box-shadow: inset 0 1px 3px rgba(62, 0, 112, 0.1), 0 0 0 3px rgba(111, 66, 193, 0.1);
}

.input-container .icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6f42c1;
    font-size: 18px;
    z-index: 1;
    transition: all 0.3s ease;
}

.input-container:focus-within .icon {
    color: #3e0070;
}

.iti {
    width: 100%;
}

.iti__selected-flag {
    padding: 0 6px 0 8px;
}

.register-button {
    width: 100%;
    padding: 16px;
    margin-top: 15px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #6f42c1, #3e0070);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(62, 0, 112, 0.2);
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.register-button.selected {
    background: linear-gradient(135deg, #3e0070, #2b004f);
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(62, 0, 112, 0.3);
}

.register-button.selected::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: buttonShine 0.8s ease-out;
}

@keyframes buttonShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.register-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.8s ease;
    opacity: 0;
}

.register-button:hover {
    background: linear-gradient(135deg, #5933a1, #2b004f);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(62, 0, 112, 0.25);
    color: #ffffff;
}

.register-button:hover::after {
    left: 100%;
    opacity: 1;
}

.register-button:active {
    transform: translateY(1px);
    box-shadow: 0 4px 8px rgba(62, 0, 112, 0.3);
}

.right-section {
    width: 60%;
    height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #6f42c1 0%, #3e0070 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: none !important;
}

.right-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(62,0,112,0.15) 0%, rgba(111,66,193,0.10) 100%);
    z-index: 1;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4,0,0.2,1);
    z-index: 0;
    box-shadow: none !important;
}

.carousel-image.active {
    opacity: 1;
    z-index: 1;
    animation: kenBurns 12s linear infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.08) translateY(-10px); }
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    pointer-events: none;
    padding: 20px;
    box-sizing: border-box;
    background: rgba(0,0,0,0.55);
}

.brand-logo {
    text-align: center;
    max-width: 450px;
    margin: 0 auto;
    pointer-events: auto;
}

.logo-image {
    max-width: 350px;
    height: auto;
    display: block;
    margin: 0 auto 15px;
    box-shadow: none !important;
    background: none;
}

.brand-logo h1 {
    font-size: 7rem;
    font-weight: 700;
    margin: 10px 0;
    color: white;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 4px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
}

.brand-logo p {
    font-size: 1.2rem;
    color: #eee;
    margin: 0;
    font-weight: 300;
}

button.prev,
button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    z-index: 3;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}
button.prev { left: 0; }
button.next { right: 0; }
button.prev:hover, button.next:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 992px) {
    body {
        height: 100vh;
        overflow: hidden;
        overflow-x: hidden;
    }
    
    .container {
        flex-direction: column;
        height: 100vh;
        overflow: hidden;
        overflow-x: hidden;
    }

    .left-section {
        width: 100%;
        max-width: 100vw;
        height: 100vh;
        clip-path: none;
        padding: 20px;
        overflow-y: auto;
        box-sizing: border-box;
    }
    
    .right-section {
        display: none;
    }
    
    .register-frame {
        width: 90%;
        max-width: 450px;
        padding: 20px;
        max-height: 90vh;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    body::before {
        background-size: 20px 20px, 15px 15px;
    }
}

@media (max-width: 480px) {
    .register-frame {
        width: 95%;
        padding: 20px 15px;
    }
    
    .register-frame h2 {
        font-size: 2.2rem;
    }
    
    .input-container input,
    .iti .iti__tel-input {
        padding: 14px 14px 14px 45px;
        font-size: 14px;
    }
    
    .left-section {
        padding: 20px 15px;
    }
    
    .register-button {
        padding: 14px;
    }
}

.message-box {
    padding: 10px;
    margin: 8px 0;
    border-radius: 8px;
    text-align: center;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
    animation: slideInDown 0.5s ease-out forwards;
    position: relative;
    overflow: hidden;
    max-height: 50px;
    line-height: 1.2;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message {
    background-color: rgba(76, 175, 80, 0.2);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.4);
    box-shadow: 0 4px 6px rgba(76, 175, 80, 0.1);
}

.success-message::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: #4CAF50;
    border-radius: 4px 0 0 4px;
}

.error-message {
    background-color: rgba(244, 67, 54, 0.2);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.4);
    box-shadow: 0 4px 6px rgba(244, 67, 54, 0.1);
}

.error-message::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: #f44336;
    border-radius: 4px 0 0 4px;
}

.error-message p {
    margin: 0;
    padding: 0;
}

#password-error {
    margin-top: -10px;
    margin-bottom: 10px;
    max-height: 60px;
    overflow: hidden;
}

.hide {
    display: none;
}

::-webkit-scrollbar {
    display: none;
}

/* Sistema de notificaciones modernas y elegantes */
.notification-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.notification {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 16px 20px;
    margin-bottom: 12px;
    min-width: 320px;
    max-width: 400px;
    border-left: 4px solid #e74c3c;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

.notification.success {
    border-left-color: #27ae60;
}

.notification.error {
    border-left-color: #e74c3c;
}

.notification.warning {
    border-left-color: #f39c12;
}

.notification.info {
    border-left-color: #3498db;
}

.notification.success::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #27ae60;
    transform: scaleX(0);
    transform-origin: left;
    animation: progress 4s linear forwards;
}

.notification.error::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #e74c3c;
    transform: scaleX(0);
    transform-origin: left;
    animation: progress 4s linear forwards;
}

.notification.warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #f39c12;
    transform: scaleX(0);
    transform-origin: left;
    animation: progress 4s linear forwards;
}

.notification.info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #3498db;
    transform: scaleX(0);
    transform-origin: left;
    animation: progress 4s linear forwards;
}

@keyframes progress {
    to {
        transform: scaleX(1);
    }
}

.notification.show {
    animation: slideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.notification.hide {
    animation: slideOut 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideIn {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.notification-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    animation: iconPulse 2s ease-in-out infinite;
}

.notification.success .notification-icon {
    background: #27ae60;
}

.notification.error .notification-icon {
    background: #e74c3c;
}

.notification.warning .notification-icon {
    background: #f39c12;
}

.notification.info .notification-icon {
    background: #3498db;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Animación más suave para la entrada */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.notification.show {
    animation: fadeInScale 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.notification-text {
    flex: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #2c3e50;
    font-weight: 500;
    margin: 0;
}

.notification-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #7f8c8d;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.notification-close:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #2c3e50;
    transform: scale(1.1);
    opacity: 1;
}

/* Estilo mejorado para el selector de rol - totalmente integrado con el diseño y las animaciones del sitio */
.select-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: rgba(244, 245, 248, 0.8);
    border: none;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    height: 53px;
    padding: 0;
    overflow: hidden;
}

.select-container select {
    width: 100%;
    padding: 16px 16px 16px 50px;
    background: transparent;
    border: none;
    font-size: 15px;
    color: #333;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    font-weight: 400;
    transition: all 0.25s ease;
}

.select-container:hover {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.select-container:focus-within {
    background-color: #fff;
    box-shadow: inset 0 1px 3px rgba(62, 0, 112, 0.1), 0 0 0 3px rgba(111, 66, 193, 0.1);
    transform: translateY(-1px);
}

.select-container .icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6f42c1;
    font-size: 18px;
    z-index: 1;
    transition: all 0.3s ease;
}

.select-container:focus-within .icon {
    color: #3e0070;
}

.select-container .arrow {
    color: #6f42c1;
    font-size: 13px;
    position: absolute;
    right: 15px;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.select-container:focus-within .arrow {
    transform: rotate(180deg);
    color: #3e0070;
}

/* Animación de entrada */
@keyframes fadeSelect {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.select-container {
    animation: fadeSelect 0.4s ease-out;
    position: relative;
}

/* Efecto de ripple al hacer clic */
.select-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(111, 66, 193, 0.3);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.select-container:active::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0) translate(-50%, -50%);
        opacity: 0.6;
    }
    100% {
        transform: scale(20) translate(-50%, -50%);
        opacity: 0;
    }
}

/* Animación al cambiar */
.select-container select:focus ~ .arrow {
    animation: bounce 0.5s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(180deg); }
    40% { transform: translateY(-3px) rotate(180deg); }
    60% { transform: translateY(2px) rotate(180deg); }
}

/* Estilo para opciones */
.select-container select option {
    background-color: white;
    color: #333;
    padding: 12px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

/* Mejor contraste en la selección */
.select-container select option:checked {
    background-color: #6f42c1;
    color: white;
    font-weight: 500;
}

.select-container select option:hover {
    background-color: rgba(111, 66, 193, 0.1);
}

/* Borde inferior animado al enfocar */
.select-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6f42c1, #3e0070);
    transition: width 0.3s ease;
}

.select-container:focus-within::before {
    width: 100%;
}

/* Estilos para el teclado PIN del registro */
.pin-step-container {
    width: 100%;
    text-align: center;
    animation: fadeSelect 0.4s ease-out;
    /* Reduce the whole PIN section size */
    transform: scale(0.75);
    transform-origin: top center;
}


.register-pin-display-container {
    margin: 12px 0;
}

.register-pin-input {
    width: 180px;
    height: 42px;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 10px;
    border: 2px solid #6f42c1;
    border-radius: 12px;
    background: rgba(244, 245, 248, 0.8);
    color: #333;
    outline: none;
    font-family: 'Courier New', monospace;
}

.register-pin-input:focus {
    background: #fff;
    box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.1);
    border-color: #3e0070;
}

.register-pin-keyboard-container {
    margin: 8px 0 4px;
}

.register-pin-keyboard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 180px;
    margin: 0 auto 8px;
}

.register-pin-key {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(111, 66, 193, 0.8);
    border-radius: 50%;
    background: #fff;
    color: #6f42c1;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 6px rgba(111, 66, 193, 0.18);
    position: relative;
    overflow: hidden;
}

.register-pin-key.selected {
    background: rgba(111, 66, 193, 0.1);
    transform: scale(1.02);
    box-shadow: 0 3px 10px rgba(111, 66, 193, 0.22);
}

.register-pin-key.selected::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 0.6s ease-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.register-pin-key:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(111, 66, 193, 0.22);
}

.register-pin-key:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(111, 66, 193, 0.2);
}

.register-pin-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 10px;
}

.register-pin-clear, .register-pin-submit {
    padding: 9px 18px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.register-pin-clear {
    background: #e74c3c;
    color: white;
}

.register-pin-clear:hover {
    background: #c0392b;
    transform: translateY(-1px);
}

.register-pin-submit {
    background: linear-gradient(135deg, #6f42c1, #3e0070);
    color: white;
}

.register-pin-submit:hover {
    background: linear-gradient(135deg, #3e0070, #2b004f);
    transform: translateY(-1px);
}

.register-pin-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
}