/* Inherit root variables from styles.css */
:root {
    --red: #e11b1b;
    --black: #0b0b0b;
    --white: #ffffff;
    --light-gray: #f8f8f8;
}

body {
    padding-top: 50px; 
}

/* --- Register Page Header --- */
.register-hero-unit {
    background: linear-gradient(rgba(11, 11, 11, 0.85), rgba(11, 11, 11, 0.85)), url('images/team card.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    color: var(--white); 
}
.register-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white) !important; 
    text-shadow: 0 2px 8px rgba(0,0,0,0.5); 
}
.register-hero-sub {
    font-size: 1.25rem;
    color: var(--light-gray);
    max-width: 700px;
    margin: 1rem auto 0;
    opacity: 0.9;
}
/* --- End of Header --- */


#registration-details .section-heading {
    /* Override to remove the bottom border for this specific section */
    padding-bottom: 0;
}
#registration-details .section-heading::after {
    display: none;
}

.registration-content-wrapper {
    background-color: var(--white);
    border: 1px solid #eee;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.register-now-btn {
    font-size: 1.4rem;
    font-weight: 700;
    padding: 0.8rem 2.2rem;
    transition: all 0.3s ease;
    animation: pulse-animation 2s infinite;
}

.register-now-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 20px rgba(225, 27, 27, 0.3);
    animation-play-state: paused;
}

.what-is-included li {
    padding: 8px 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.what-is-included i {
    width: 20px; /* Ensures consistent alignment */
}


@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 27, 27, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(225, 27, 27, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(225, 27, 27, 0);
    }
}