
        .container-fluid {
            padding: 0;
            position: fixed;
        }

        .left-side { 
            background-image: url('../img/registartion.jpg');
            background-size: cover; /* Ensures the image covers the entire div */
            background-position: center; /* Centers the image */
            background-repeat: no-repeat; /* Prevents the image from repeating */
           
            width: 100%; /* Ensure the width is 100% */
        }
        .header-img{
            display: none;
        }
        .form-group input[type="radio"] {
            margin-right: 10px; /* Space between radio buttons and labels */
            accent-color: #233b76; /* Change the color of the radio button in modern browsers */
        }
        
        .form-group input[type="radio"]:checked + label {
            color: #233b76; /* Change color for checked radio button labels */
            font-weight: bold; /* Bold for selected option */
        }
        
        .form-group input[type="radio"]:hover + label {
            color: #0056b3; /* Change color on hover */
        }
        
        .text-danger {
            color: red; /* Red color for required asterisk */
        }
        @media screen and (max-width: 600px) {
            .left-side{
                display:none;
            }
            .header-img{
                display: block;
            }
        }
        .form-container {
          overflow-x: scroll;
            height: 100vh;
            width: 100%;
           /* scrollbar-color: pink lightblue;  */
        }

        .form-group {
            position: relative;
            margin-bottom: 30px;
        }

        .form-control {
            background-color: #f8f9fa;
            border: none;
            border-radius: 0;
            border-bottom: 2px solid #ced4da;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            border-color: #233b76;
            box-shadow: none;
        }

        .error-message {
            color: #dc3545;
            font-size: 0.8rem;
            position: absolute;
            bottom: -20px;
            left: 0;
            visibility: hidden;
        }

        .error-message.active {
            visibility: visible;
        }

        .btn-primary {
            background-color: #233b76;
            border-color: #233b76;
        }

        .btn-primary:hover {
            background-color: #0056b3;
            border-color: #0056b3;
        }
        .countdown-container {
  display: flex;
  width: 100%;
  max-width: 90%;
    margin-top: 55%;
    font-weight: 700;
  justify-content: space-between;
  color: rgb(252, 251, 250);
}

.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: 5px solid rgba(255,255,255,0.3);
  width: 100px;
  height: 100px;
  border-radius: 99px;
}

.days,
.hours,
.minutes,
.seconds {
  font-size: 1.5em; 
  margin: 10px 0;
}


.days-label,
.hours-label,
.minutes-label,
.seconds-label {
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 0.8rem;
}

@media (max-width: 800px) {
  
  .countdown-container {
    max-width: 90%;
  }
  
  .days-container,
  .hours-container,
  .minutes-container, 
  .seconds-container {
    font-size: 0.8em;
    width: 100px;
    height: 100px;
  }
}
.event-section {
        background-color: rgb(213 213 213 / 30%); /* Blue transparent background */
        border-radius: 10px; /* Rounded corners */
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Shadow effect */
        padding: 20px; /* Add some padding */
        margin-top: 10px; /* Add some margin at the top */
        display: flex; /* Use flexbox layout */
    }
    .event-section img {
        width: 20%; /* Limit image width to 30% */
        margin-right: 20px; /* Add some margin on the right */
    }
    .event-content {
        flex: 1; /* Take up remaining space */
    }
    .event-section h4 {
        color: #333; /* Dark gray text */
    }
    .event-section p {
        color: #666; /* Medium gray text */
    }
        