@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    color: #ffffff;
}

.form-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding: 0 100px;
}

.form-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.event-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    padding: 0 20px;
}

.form-right {
    flex: 1;
}

.form-content {
    background-color: #2d2d2d;
    width: 100%;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.form-header {
    background-color: #4b4b4b;
    color: #ffffff;
    height: 60px;
    text-align: center;
    padding-top: 20px;
    font-size: 1.2rem;
    border-radius: 4px;
    margin-bottom: 20px;
}

.event-highlight {
    color: #f66950;
}

.form-registration {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.input-field, .input-full-width {
    background-color: #2d2d2d;
    border: 1px solid #444;
    color: #ffffff;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
    font-size: 1rem;
}

.event-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    /* align-items: center; */
}

.checkbox-item {
    display: flex;
    
    align-items: baseline;
    
}


.form-note {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.form-upload-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.file-upload-section {
    width: 80%;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border: 1px dashed white;
}

.file-upload-section input {
    color: white;
}

.form-submit-btn {
    background-color: #f66950;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
    /* background-color: #d18e00; */
}

/* Responsive Styles for Mobile */
@media screen and (max-width: 768px) {
    .form-container {
        flex-direction: column;
        padding: 50px 20px;
        gap: 40px;
    }

    .form-left, .form-right {
        width: 100%;
    }

    .form-content {
        padding: 15px;
    }

    .form-header {
        font-size: 1.1rem;
        padding-top: 15px;
        height: auto;
    }

    .input-field, .input-full-width {
        padding: 10px;
        font-size: 0.9rem;
    }

    .form-note {
        font-size: 0.8rem;
    }

    .form-submit-btn {
        padding: 10px;
        font-size: 0.9rem;
    }

    /* File Upload Adjustments for Mobile Devices */
    .file-upload-section {
        width: 100%; /* Full width on smaller devices */
        padding: 15px;
        font-size: 0.9rem;
    }

    .file-upload-section input {
        width: 90%;
        font-size: 0.9rem;
    }
}

/* Further adjustments for very small screens (up to 480px) */
@media screen and (max-width: 480px) {
    .file-upload-section {
        width: 80%;
        padding: 10px;
    }

    .file-upload-section input {
        width: 80%;
        font-size: 0.8rem;
    }

    .form-container {
        padding: 30px 10px;
        gap: 20px;
    }

    .form-content {
        padding: 10px;
    }

    .form-header {
        font-size: 1rem;
        padding-top: 10px;
    }

    .input-field, .input-full-width {
        padding: 8px;
        font-size: 0.8rem;
    }

    .form-note {
        font-size: 0.75rem;
    }

    .form-submit-btn {
        padding: 8px;
        font-size: 0.8rem;
    }
}

.map-area {
    height: 80vh;
    margin: 20px;
}

#map {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    position: relative;
    width: 100%;
    height: 100%;
}

#map iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

@media screen and (max-width: 768px) {
    .map-area {
        height: 60vh;
        margin: 10px;
    }

    #map iframe {
        height: 350px;
    }
}

@media screen and (max-width: 480px) {
    .map-area {
        height: 50vh;
    }

    #map iframe {
        height: 300px;
    }
}

.form-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.account-details{
    border: 1px solid white;
    padding: 10px;
}
.account-details p {
    font-weight: bold;
    color: white;
    
}
.checkbox-item input[type="checkbox"]{
    /* accent-color: white;  */
    display: none;
}
.checkbox-item label {
    cursor: pointer;
    padding-left: 30px;
    color: white;
    position: relative;
    display: inline-block;
}
.checkbox-item label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 15px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: white;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* When checkbox is checked, change the color of the square */
.checkbox-item input[type="checkbox"]:checked + label::before {
    /* background-color: green;
    border-color: green; */
    /* background: white;
     */
     background: #f66950;
}

@media only screen and (max-width: 768px) {
    .about_info {
      margin-top: 10px; /* Reduce the gap */
    }

    .about_thumb {
      margin-bottom: 10px; /* Reduce the bottom margin of the image */
    }
  }

  .offer-wrapper{
    font-family: "Bai Jamjuree", sans-serif;
    /* background: wheat; */
    text-align: center;
    font-size: xx-large;
    font-weight: bolder;
    color: white;
    padding-bottom: 40px;
  }
  .offer-wrapper .strike-ruppee{
     /* background: red; */
     text-decoration: line-through;
  }
  .offer-wrapper .strike-ruppee2{
    /* background: red; */
    font-weight: 900;
    color: orangered;
 }

.error-input {
  border: 2px solid red !important;
  box-shadow: 0 0 5px red;
}