/* Customer Registration Page Styles */

.sticky-form {
    position: sticky;
    top: 2rem;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

.gradient-bg {
    background: #ffffff;
}

.glass-effect {
    background: rgba(97, 185, 63, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(97, 185, 63, 0.2);
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateY(0);
    }
    40%, 43% {
        transform: translateY(-10px);
    }
    70% {
        transform: translateY(-5px);
    }
}

.form-input {
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #61b93f;
    box-shadow: 0 0 0 3px rgba(97, 185, 63, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #61b93f 0%, #61b93f 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #61b93f 0%, #61b93f 100%);
    transform: translateY(-1px);
}

.btn-secondary {
    background: #4b2859;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #4b2859;
}

/* Multi-select styles */
.category-option:hover {
    background-color: #f3f4f6;
}

.category-option.selected {
    background-color: #dcfce7;
    border-left: 3px solid #61b93f;
}

.category-option.selected:hover {
    background-color: #bbf7d0;
}
