:root {
    --primary-color: #7330f8;
    --secondary-color: #6c757d;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

*::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

body {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.account-container,
.error-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Mobile full-screen optimizations */
@media (max-width: 575.98px) {
    .account-container,
    .error-container {
        align-items: flex-start;
        background-color: #fff;
    }

    .account-container .container,
    .error-container .container {
        padding: 0;
        margin: 0;
        max-width: 100%;
    }

    .card {
        border: none;
        border-radius: 0;
        box-shadow: none !important;
        min-height: 100vh;
    }

    .card-body {
        padding: 2rem 1.5rem;
    }
}

.display-1 {
    font-size: 5rem;
}

@media (max-width: 768px) {
    .display-1 {
        font-size: 4rem;
    }
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    font-weight: 500;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #5d1be3 !important;
    border-color: #5d1be3 !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

img {
    max-width: 100%;
    height: auto;
}

/* Registration Progress Styles */
.registration-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 2rem;
}

.registration-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e9ecef;
    z-index: 1;
    transform: translateY(-50%);
}

.step-item {
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding: 0 10px;
    text-align: center;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.step-item.active .step-icon {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.step-item.completed .step-icon {
    background-color: #198754;
    color: #fff;
    border-color: #198754;
}

.step-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #6c757d;
}

.step-item.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

/* Fun Bubbly Text */
.bubbly-text {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    letter-spacing: -0.01em;
}
