@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,500;1,600;1,700;1,800;1,900&family=Oswald:wght@200;300;400;500;600;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* variables */
:root
{
    --primary-color: #f0b90b; /* Binance Gold */
    --secondary-color: #fcd535; /* Brighter Binance Yellow */
    --field-text-color: #EAECEF; /* Light Gray for text */
    --field-bg-color: #1E2329; /* Dark Gray from Binance Palette */
    --bg-color: #0c0e12; /* Binance Black */
    --field-color: #262930; /* Slightly lighter gray for fields */
}
  
body
{
    font-family: "Jost", sans-serif;
    width: 100%;
    position: relative;
    height: auto;
    color: var(--field-text-color);
}

main
{
    background-color: var(--bg-color);
    width: 100%;
    min-height: 100vh;
    padding: 35px 50px;
    background-image: url(../images/bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    overflow: hidden;
}

a
{
    color: var(--primary-color);
    text-decoration: underline;  
    font-weight: 500;

}
a:hover
{
    color: var(--secondary-color);
}
.logo
{
    display: flex;
    align-items: center;
    height: auto;
    position: relative;
    z-index: 10;
}
.logo-icon
{
    width: auto;
}
.logo-icon img
{
    width: 100%;
}
.logo-text
{
    font-size: 37px;
    font-family: "Oswald", sans-serif;
    color: #FFFFFF; /* White for prominent text */
    font-weight: bold;
    margin-left: 3px;
}
.wrapper
{
    width: 100%;
    height: 100%;
    display: grid;
    align-content: center;
}


.side-text h2
{
    font-size: 65px;
    color: #FFFFFF;
    font-weight: bold; 
    line-height: 1.2;
}
.side-text p
{
    font-size: 27px;
    color: var(--field-text-color);
    font-weight: bold;
    line-height: 3;    
}
.side-text p span
{
    position: relative;
    display: inline-block;
    line-height: 1.3;
}
.side-text p span::after
{
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 50px;
}
.side-text button
{
    background-color: var(--primary-color);
    width: 70%;
    height: 69px;
    border-radius: 50px;
    border: 0;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    color: var(--bg-color); /* Dark text on gold button */
    font-weight: bold;
      
}

.side-text button:hover
{
    background-color: var(--secondary-color);
}

.side-text button i
{
    margin-right: 10px;
}
form
{
    height: calc(100vh - 140px);
    overflow: hidden;
    overflow-y: scroll;
    border-radius: 10px;

}

.scroll-form::-webkit-scrollbar
{
    width: 15px;

}

.scroll-form::-webkit-scrollbar-track
{
    background-color: var(--field-bg-color);
    border-radius: 50px;
    margin-top: 270px;
    margin-bottom: 270px;

}
.scroll-form::-webkit-scrollbar-thumb
{
    background-color: var(--secondary-color);
    border-radius: 50px;
    height: 100px;
}

.steps-inner
{

    min-height: 150px;
    width: 95%;
    background-color: var(--field-bg-color);
    border-radius: 10px;
    box-shadow: 0px 0px 73px 0px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--field-color);

}

.main-heading
{

    font-size: 40px;
    color: #FFFFFF;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 15px;
}
.set_meeting
{
    padding: 75px;
}
.meeting_type
{
    width: 100%;
    height: auto;
    margin-bottom: 25px;

}
.meeting_type select
{
    -webkit-appearance: none;
    border: solid 2px var(--field-color);
    background-color: var(--field-bg-color);
    height: 61px;
    width: 100%;
    border-radius: 6px;
    font-size: 16px;
    color: var(--field-text-color);
    transition: 0.4s all ease;
    cursor: pointer;
    font-weight: 400;
    padding-left: 35px;
}
.meeting_type select:focus
{
    outline: none;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0px 0px 38px 0px rgba(240, 185, 11, 0.11);
    background-color: var(--bg-color);

}
.meeting_date
{
    border: solid 2px var(--field-color);
    background-color: var(--field-bg-color);
    border-radius: 6px;
    height: 65px;
    transition: 0.4s all ease;
    display: flex;
    margin-bottom: 25px;
}
.meeting_date:focus-within
{
    border-color: var(--primary-color);
}
.meeting_date .date-icon
{
    width: 30%;
    display: grid;
    place-content: center;
}
.meeting_date .date-icon i
{
    font-size: 16px;
    color: var(--primary-color);
    height: 100%;
}
.meeting_date .start_date, .meeting_date .end_date
{
    width: 70%;
    text-align: center;
    height: 100%;
    position: relative;
}
.meeting_date select
{
    -webkit-appearance: none;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: var(--field-text-color);
    background-color: transparent;
    font-weight: 500;
    border: 0;
    padding-left: 20px;
    cursor: pointer;
}
.meeting_date select:focus
{
    outline: none;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0px 0px 38px 0px rgba(240, 185, 11, 0.11);
    background-color: var(--bg-color);

}
.b-custom
{
    border-right: 2px solid var(--field-color);
}
.meeting_date select+span::after
{
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 35%;
    right: 15px;
    font-size: 13px;
    color: var(--primary-color);
}
.schedule-type
{
    display: flex;
    justify-content: space-between;
    align-content: center;
    flex-wrap: wrap;
}
.schedule-type > *
{
    margin-bottom: 10px;
}
.schedule-type input[type=radio]
{
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--bg-color);
    border: solid 2px var(--field-color);
    cursor: pointer;
    transition: 0.4s all ease;
    position: relative;
      
}
.schedule-type input:checked::before
{
    content: "";
    position: absolute;
    top: 37%;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: var(--primary-color);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transition: 0.4s all ease;
}
.schedule-type input:checked
{
    border-color: var(--primary-color);
    transition: 0.4s all ease;
    background-color: var(--field-bg-color);
}
.schedule-type label
{
    font-size: 16px;
    color: var(--field-text-color);
    margin-left: 10px;
    display: -webkit-inline-box;
  }
  .schedule-type label #edit
  {
    margin-right: 10px;
    font-weight: bold;
    cursor: auto;
    width: 90px;
    height: 25px;
    background-color: transparent;
    border: none;
    color: var(--field-text-color);

  }

 .schedule-type label #edit:focus
 {
    outline: none;
 }
 .event_details
 {
    background-image: none;
    background-color: #13151a; /* Darker accent background */
    width: 100%;
    height: auto;
    padding: 30px 75px 30px 75px;
 }
 .event_details .main-heading
 {
    font-size: 30px;
 }
.guests
{
    border-top: solid 1px var(--field-color);
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.guest-inner
{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.event-text
{
    font-size: 16px;
    color: var(--field-text-color);
    font-weight: bold;
    margin-right: 11px;
}
.guest-single
{
    border-radius: 50%;
    background-color: var(--field-color);
    width: 75px;
    height: 75px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}
.guest-single img
{
    width: 100%;
    height: auto;
}
.add-guest
{
    border-radius: 50%;
    background-color: var(--primary-color);
    width: 39px;
    height: 39px;
    line-height: 39px;
    text-align: center;
    font-size: 20px;
    color: var(--bg-color);
    font-weight: bold;
    cursor: pointer;
}
.add-guest input
{
    display: none;
}
.text-input
{
    border: solid 2px var(--field-color);
    border-radius: 6px;
    height: 65px;
    background-color: var(--field-bg-color);
    padding: 6px 20px 6px 6px;
    transition: 0.4s all ease;
    display: flex;
    align-items: center;
    margin-bottom: 25px;

}
.text-input label
{
    border-radius: 6px;
    background-image: none;
    background-color: #13151a; /* Darker accent background */
    font-size: 16px;
    font-weight: normal;
    height: 100%;
    text-align: center;
    line-height: 48px;
    padding: 0 30px;
    color: var(--field-text-color);
}    
.text-input input
{
    width: 100%;
    height: 100%;
    border: 0;
    margin-left: 30px;
    background-color: transparent;
    color: var(--field-text-color);
}
.text-input:focus-within
{
    border-color: var(--primary-color);
}
.text-input input:focus
{
    outline: none;
}

.text-input i
{
    font-size: 15px;
    color: var(--primary-color);
}
.video_call_opt
{
    border-top: solid 1px var(--field-color);
    border-bottom: solid 1px var(--field-color);
    padding: 25px 0;
    display: -webkit-inline-box;
    margin-bottom: 30px;
    width: 100%;
}

.video_call_opt .colors
{
    margin-left: 25px;
    color: var(--field-text-color);
    font-weight: 400;
}
.video_call_opt i
{
    font-size: 16px;
    color: var(--primary-color);
    margin-right: 8px;
}
::-webkit-calendar-picker-indicator
{
    display: none;
}
.other-input
{
    padding: 30px 75px 30px 75px;
}
.other-input .main-heading
{
    font-size: 23px;
}

.other-input textarea
{
    border: solid 2px var(--field-color);
    border-radius: 6px;
    background-color: var(--field-bg-color);
    min-height: 110px;
    width: 100%;
    resize: none;
    transition: 0.4s all ease;
    padding: 25px;
    color: var(--field-text-color);
}
.other-input textarea:focus
{
    outline: none;
    border-color: var(--primary-color);
}
.attachments input
{
    display: none;
}
.attachments label
{
    font-size: 16px;
    color: var(--primary-color);
    text-decoration: underline; 
    cursor: pointer;
    font-weight: 500;
    min-height: auto;
    margin-top: 12px;
    margin-bottom: 25px;

}
.event_color input
{
    -webkit-appearance: none;
    border: solid 2px var(--field-color);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    background-color: transparent;
    cursor: pointer;
    transition: 0.4s all ease;
}
.event_color input:checked
{
    background-color: var(--field-color);
}
.event_color .purple
{
    border-color: rgb(153, 127, 220);
}
.event_color .purple:checked
{
    background-color: rgb(153, 127, 220);
}
.event_color .yellow
{
    border-color: rgb(234, 220, 145);
}
.event_color .yellow:checked
{
    background-color: rgb(234, 220, 145);
}
.event_color .red
{
    border-color: rgb(234, 128, 137);
}
.event_color .red:checked
{
    background-color: rgb(234, 128, 137);
}
.event_color .green
{
    border-color: rgb(35, 163, 84);
}
.event_color .green:checked
{
    background-color: rgb(35, 163, 84);
}
.submit 
{
    width: 100%;
    height: auto;
    margin-top: 10px;
}
.submit .sub
{
    border-radius: 6px;
    background-color: var(--primary-color);
    width: auto;
    padding: 0 60px;
    font-weight: 500;
    height: 50px;
    border: solid 2px transparent;
    font-size: 16px;
    color: var(--bg-color);
    margin-right: 15px;
    position: relative;
    cursor: pointer;
}

.submit .sub:hover {
    background-color: var(--secondary-color);
}
.submit .sub span
{
    margin-left: 10px;
    display: inline-block;
    transform: translateX(-200%);
    opacity: 0;
    transition: 0.4s ease;
    position: absolute;
}
.submit .sub:hover span
{
    opacity: 1;
    transform: translateX(0);
}

#notifiymail
{
    color: var(--primary-color);
    text-decoration: underline;  
    font-weight: 500;
    border: 0;
    background-color: transparent;
}

/* ... (Thank you page styles can be similarly adapted if needed) ... */

#sub img
{
    width: 60px;
}

.highlight
{
    border-top: solid 3px var(--primary-color) !important;
    border-bottom: solid 3px var(--primary-color) !important;

}

#error
{
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 20;
}

.invalid
{
  border: solid 2px #ff4444 !important;
  position: relative;
}