.register-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #000000, #1a0000, #2b0000, #3d0000);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    overflow: hidden;
}

@keyframes gradient {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

.register-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.3) 0%, rgba(255, 0, 0, 0) 70%);
    transform: rotate(45deg);
    z-index: 1;
}

.register-container::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.2) 0%, rgba(255, 0, 0, 0) 70%);
    transform: rotate(45deg);
    z-index: 1;
}

.register-card {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    width: 100%;
    max-width: 800px;
    position: relative;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.register-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #ff0000, #ff3333, #ff0000);
}

.register-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.register-header .logo-text {
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.register-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.register-form .form-control,
.register-form .form-select {
    padding: 0.9rem 1.5rem;
    margin-bottom: 1.5rem;
    background-color: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.register-form .form-control:focus,
.register-form .form-select:focus {
    background-color: rgba(40, 40, 40, 0.7);
    border-color: rgba(255, 0, 0, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.25);
}

.form-check-input {
    background-color: #333;
    border-color: #555;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.register-form h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.register-form h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.btn-register {
    background: linear-gradient(45deg, #ff0000, #ff3333);
    border: none;
    color: white;
    padding: 0.9rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.btn-register:hover {
    background: linear-gradient(45deg, #e60000, #ff0000);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.register-footer {
    text-align: center;
    margin-top: 2rem;
}

.register-footer p {
    margin-bottom: 1.5rem;
    color: #aaa;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.plan-card {
    background-color: rgba(25, 25, 25, 0.8);
    border-radius: 15px;
    padding: 1.8rem;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, rgba(255, 0, 0, 0.5), rgba(255, 0, 0, 0.8), rgba(255, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(30, 0, 0, 0.9), rgba(50, 0, 0, 0.8));
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.plan-card.selected::before {
    opacity: 1;
}

.plan-card h5 {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: flex-start;
}

.plan-price span {
    font-size: 1rem;
    color: #999;
    font-weight: 400;
    margin-left: 3px;
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: -10px;
    background: linear-gradient(45deg, #ff0000, #ff3333);
    color: white;
    border-radius: 30px;
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    transform: rotate(0deg);
    z-index: 10;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% { box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3); }
    50% { box-shadow: 0 5px 20px rgba(255, 0, 0, 0.6); }
    100% { box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3); }
}

.floating-shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.4), rgba(255, 0, 0, 0.1));
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.2), rgba(255, 0, 0, 0.05));
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15px;
    right: -35px;
    width: 70px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    transition: background 0.8s ease;
}

.step.active:not(:last-child)::after {
    background: linear-gradient(to right, var(--primary-color), rgba(255, 255, 255, 0.2));
    animation: progressLine 0.8s ease forwards;
}

@keyframes progressLine {
    0% { background: linear-gradient(to right, var(--primary-color) 0%, rgba(255, 255, 255, 0.2) 0%); }
    100% { background: linear-gradient(to right, var(--primary-color) 100%, rgba(255, 255, 255, 0.2) 0%); }
}

.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.step.active .step-number {
    background-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    transform: scale(1.1);
    animation: pulseNumber 2s infinite;
}

@keyframes pulseNumber {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.step-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.4s ease;
}

.step.active .step-label {
    color: white;
    font-weight: 600;
}

/* Add floating animations for plan cards */
.plan-card {
    animation: floatCard 5s ease-in-out infinite;
    animation-delay: calc(var(--card-index, 0) * 0.5s);
}

.plan-card:nth-child(1) {
    --card-index: 0;
}

.plan-card:nth-child(2) {
    --card-index: 1;
}

.plan-card:nth-child(3) {
    --card-index: 2;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.plan-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.2);
    animation-play-state: paused;
}

.plan-card.selected {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
    animation-play-state: paused;
}

/* Enhance button animations */
.btn-register {
    position: relative;
    overflow: hidden;
}

.btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s;
}

.btn-register:hover::before {
    left: 100%;
}
.membership-features li {
    list-style: none;
}
/* Add these styles to support step functionality */
.form-step {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0s;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: stepIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes stepIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.step-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.step-buttons button {
    min-width: 120px;
}

.fade-out {
    animation: fadeOut 0.5s;
}

@keyframes stepInReverse {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-number.completed {
    background-color: #28a745 !important;
}
