* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

html,
body {
  /* background: linear-gradient(to right, #c9eeff3e, #f5c7f73e); */
}

/* -------------------
-------------------
Host Banner
-------------------
------------------- */

.top-banner {
  width: 100%;
  text-align: center; /* Center the image */
  padding: 10px 0; /*Add some spacing */
  border-bottom: 1px solid #ddd; /* Thin separator line */
  background-color: #ffffff;
}

.top-banner img {
  max-width: 100%;
  height: 50px; /* Maintain aspect ratio */
}

/* -------------------
-------------------
Navbar
-------------------
------------------- */

#header {
  position: -webkit-sticky; /* For Safari */
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6, 12, 34, 0.98);
  padding: 15px 0;
  transition: all 0.5s;
}
  
  /* Container inside header */
  .container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }
  
  /* Logo styling */
  #logo img {
    max-height: 40px;
  }
  
  /* Nav Menu Container */
  #nav-menu-container {
    float: right;
  }
  
  /* Nav Menu Essentials */
  .nav-menu,
  .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .nav-menu {
    display: flex;
    align-items: center;
  }
  
  .nav-menu li {
    position: relative;
    margin-left: 15px;
  }
  
  .nav-menu li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 8px 12px;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
  }
  
  /* Dropdown Menu */
  .nav-menu li.menu-has-children > ul.dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    border-radius: 3px;
    padding: 10px 0;
    z-index: 99;
  }
  
  .nav-menu li.menu-has-children:hover > ul.dropdown {
    display: block;
  }
  
  .nav-menu li.menu-has-children ul.dropdown li {
    min-width: 180px;
    margin: 0;
  }
  
  .nav-menu li.menu-has-children ul.dropdown li a {
    padding: 10px;
    color: #060c22;
    font-size: 13px;
    display: block;
    transition: background 0.3s, color 0.3s;
  }
  
  .nav-menu li.menu-has-children ul.dropdown li a:hover {
    background: #9B5DE5;
    color: #000;
  }
  
  /* Optional: Add transitions or effects on scroll
     (For example, you might add a "header-scrolled" class via JavaScript to change height or background) */
  #header.header-scrolled {
    background: rgba(6, 12, 34, 0.98);
    padding: 10px 0;
  }
  

  .nav-menu li.Registration a {
    color: #000000;
    background: #00BBF9;
    padding: 7px 22px;
    border-radius: 50px;
    border: 2px solid #00BBF9;
    transition: all ease-in-out 0.3s;
    font-weight: 700;
    margin-left: 8px;
    margin-top: 2px;
    line-height: 1;
    font-size: 13px;
  }

  .nav-menu li.Abstract a {
    color: #000000;
    background: #FEE440;
    padding: 7px 22px;
    border-radius: 50px;
    border: 2px solid #FEE440;
    transition: all ease-in-out 0.3s;
    font-weight: 700;
    margin-left: 8px;
    margin-top: 2px;
    line-height: 1;
    font-size: 13px;
}

.selected{
  color: #FEE440;
}

/* -------------------
-------------------
Banner Image
-------------------
------------------- */

.banner {
  height: 400px;
  width: 100%;
  background-image: url("../img/Registration_Login/banner.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* -------------------
-------------------
Heading
-------------------
------------------- */

.heading {
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 10px;
}

.heading h1 {
  margin-top: 1.5%;
  font-size: 3rem;
  text-transform: uppercase;
  color: #373737;
  font-family: "Montserrat Alternates";
}

.heading p {
  text-align: center;
  color: #505050;
}

.heading a {
  color: #0e4f99;
}

.heading .login {
  color: #070e23;
  font-size: 1rem;
}

/* -------------------
-------------------
Form
-------------------
------------------- */

.Registration_form {
  display: flex;
  justify-content: center;
  width: 90vw;
  margin: 0 auto;
}

.Registration_form h2 {
  margin: 20px 0 30px 0;
  color: #373737;
  text-align: center;
}

.name-email,
.password {
  display: flex;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
  border: none;
  background-color: #fafafa;
  height: 40px;
  width: 400px;
}

/*This button will send the OTP*/
button {
  margin-top: 10px;
  background-color: #00BBFA;
  border-radius: 10px;
  border: #00BBFA;
  padding: 10px;
  color: #000000;
  font-size: 0.8rem;
}


.email,
.conf_pass,
.phone {
  padding-left: 10px;
}

label {
  font-size: 1.18rem;
}

.chkbxpolicy span {
  color: #00bbf9;
}

.gender-diet-allergy {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
}

.gender,
.diet,
.allergy {
  display: flex;
  flex-direction: column;
  width: 30%;
  justify-content: left;
}

.gender label,
.diet label,
.allergy label {
  margin-bottom: 5px;
}

.affiliation,
.endorsement {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
  justify-content: left;
}

.affilation-section label {
  margin-bottom: 5px;
}

.endorsement input[type="file"] {
  padding: 10px;
  border-radius: 5px;
  font-size: 1rem;
  color: #373737;
  cursor: pointer;
}
/* This Endorsement file button*/
.endorsement input[type="file"]::file-selector-button {
  background-color: #00BBFA;
  border-radius: 5px;
  border: #00BBFA;
  padding: 10px;
  color: #000000;
  cursor: pointer;
  font-size: 0.8rem;
  margin-right: 9px;
}

.institute {
  display: flex;
  flex-direction: column;
}

.institute_name_address,
.designation_country {
  display: flex;
}

.designation_country {
  margin-top: 20px;
}

.institute_address,
.country {
  padding-left: 10px;
}

.otpverify{
  margin-top: 20px;
  display: flex;
  width: 90vw;
  justify-content:center;
  align-items: center;
  margin: 0 auto;
}

.otpverify h2, label, input, button {
  margin: 10px;
}

/* This is last (Final) button*/
.otpverify button {
  background-color: #0e4f99;
  border: none;
  padding: 10px 30px;
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.2rem; 
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
/* -------------------
-------------------
Footer
-------------------
------------------- */

footer {
  height: 8vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background-color: #070e23;
  color: #ffffff;
  margin-top: 20px;
}
