/* ==========================
   General Container & Layout
   ========================== */
.container-fluid {
    padding: 0;
    height: 100vh;
    overflow: hidden;
}

.left-side { 
    background-image: url('../img/registartion.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* height: 100%; */
    width: 100%;
}

.form-container {
    background-color: #fff;
    padding: 40px 30px;
    height: 100vh;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    border-radius: 0 15px 15px 0;
}

/* ==========================
   Header Image & Title
   ========================== */
.header-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
}

h2.text-center {
    font-weight: 700;
    color: #df5719;
    margin-bottom: 30px;
}

/* ==========================
   Form Fields
   ========================== */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    font-weight: 500;
}

.form-control {
    background-color: #f8f9fa;
    border: none;
    border-radius: 5px;
    border-bottom: 1px solid #ced4da;
    transition: border-color 0.3s, box-shadow 0.3s;
    padding: 7px;
}

.form-control:focus {
    border-color: #df5719;
    box-shadow: 0 2px 6px rgba(223,87,25,0.25);
}

/* ==========================
   Radio Buttons & Category
   ========================== */
.form-group input[type="radio"] {
    margin-right: 10px;
    accent-color: #df5719;
}

.form-group input[type="radio"] + label {
    margin-right: 20px;
    cursor: pointer;
}

.form-group input[type="radio"]:checked + label {
    color: #df5719;
    font-weight: bold;
}

.form-group input[type="radio"]:hover + label {
    color: #df5719;
}

/* ==========================
   Buttons
   ========================== */
.btn-primary {
    background-color: #df5719bf;
    border-color: #df5719bf;
    border-radius: 5px;
    font-weight: 600;
    padding: 12px;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #df5719;
    border-color: #df5719;
}

/* ==========================
   Responsive Adjustments
   ========================== */
@media screen and (max-width: 768px) {
    .left-side {
        display: none;
    }

    .header-img {
        display: block;
    }

    .form-container {
        border-radius: 0;
        padding: 20px;
    }
}

/* ==========================
   Countdown / Event Sections
   ========================== */
.countdown-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    font-weight: 700;
}

.days-container, .hours-container, .minutes-container, .seconds-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.1);
    border: 4px solid rgba(255,255,255,0.3);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 5px;
}

.event-section {
    background-color: rgba(213,213,213,0.3);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.event-section img {
    width: 25%;
    border-radius: 10px;
    margin-right: 20px;
}

.event-content h4 {
    color: #333;
    font-weight: 600;
}

.event-content p {
    color: #666;
    font-size: 0.95rem;
}
