/* Reset */
* {

  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html, body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100vh;
}

body, section1 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-image: url('img/slide-3.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Container for Responsiveness */
.container1 {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  
}
.container2 {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  
}

/* Login Box Styling */
.login-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  width: 450px;
  text-align: center;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin: 120px 0;
  padding-bottom: 50px;
}


#option1 {
  background-color: #111;
}

h2 {
  margin-top: 0px;
  margin-bottom: 1.5rem;
  /* font-size: 1.8rem; */
  color: #fff;
}

/* Input Fields and Button */
.input-field {
  margin-bottom: 1rem;
  text-align: left;
}

.input-field label {
  display: block;
  margin-bottom: 0.3rem;
  color: #fff;
}
.input-field select {
  width: 100%;
  padding: 0.7rem;
  border-radius: 5px;
  border: none;
  background: rgba(255, 255, 255, 0.2); /* Background color of the dropdown */
  color: #fff; /* Text color */
  font-size: 1rem;
  /* appearance: none;  */
  /* -webkit-appearance: none;  */
  -moz-appearance: none;
  
}

.input-field input,
.input-field select {
  width: 100%;
  padding: 0.7rem;
  border-radius: 5px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1rem;
}

.input-field input::placeholder {
  color: #ccc;
}

/* Forgot Password and Remember Me Section */
.forgot-password {
  display: flex;
  margin: 0.5rem 0;
  color: #fff;
  font-size: 1rem;
  justify-content: space-between;
  padding-left: 127px;
}

.checkbox-field {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.checkbox-field input[type="checkbox"] {
  margin-right: 0.5rem;
  accent-color: #2bc03c;
}

.checkbox-field label {
  color: #fff;
  font-size: 1rem;
}

hr {
  margin: 20px 0;
  
}

.button-56 {
  align-items: center;
  background-color: #fee6e3;
  border: 2px solid #111;
  border-radius: 8px;
  box-sizing: border-box;
  color: #111;
  cursor: pointer;
  display: flex;
  font-family: Inter, sans-serif;
  font-size: 16px;
  height: 48px;
  justify-content: center;
  line-height: 24px;
  max-width: 100%; /* Keep this to ensure responsiveness */
  width: 50%; /* Set width to 100% to fill the container */
  padding: 0 30px; /* Adjust padding to increase button size */
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-container {
  display: flex;
  justify-content: center; 
}

.button-56:after {
  background-color: #111;
  border-radius: 8px;
  content: "";
  display: block;
  height: 48px;
  left: 0;
  width: 100%;
  position: absolute;
  top: -2px;
  transform: translate(8px, 8px);
  transition: transform .2s ease-out;
  z-index: -1;
}

.button-56:hover:after {
  transform: translate(0, 0);
}

.button-56:active {
  background-color: #ffdeda;
  outline: 0;
}

.button-56:hover {
  outline: 0;
}

.button-container2 {
  display: flex;
  justify-content: center; 
}
.btn-signup {
  align-items: center;
  background-color: #dc4040;
  border: 2px solid #111;
  border-radius: 8px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: Inter, sans-serif;
  font-size: 16px;
  height: 48px;
  justify-content: center;
  line-height: 24px;
  max-width: 100%; /* Keep this to ensure responsiveness */
  width: 50%; /* Set width to 100% to fill the container */
  padding: 0 30px; /* Adjust padding to increase button size */
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}



.btn-signup:after {
  background-color: #111;
  border-radius: 8px;
  content: "";
  display: block;
  height: 48px;
  left: 0;
  width: 100%;
  position: absolute;
  top: -2px;
  transform: translate(8px, 8px);
  transition: transform .2s ease-out;
  z-index: -1;
}

.btn-signup:hover:after {
  transform: translate(0, 0);
}

.btn-signup:active {
  background-color: #dc4040;
  outline: 0;
}

.btn-signup:hover {
  outline: 0;
}


.signup-text {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #fff;
  text-align: start;
}

.signup-text a {
  color: #fff;
  text-decoration: none;
  font-style: italic;
}

.signup-text a:hover {
  color: #fff;
  text-decoration: underline;

}

.signup-text1 {
  margin-top: 1rem;
  font-size: 1rem;
  color: #fff;
  /* text-align: start; */
}
.image-upload-field {
  margin-bottom: 1rem; /* Space below the upload field */
  text-align: left;
}
.image-upload-field label{
  display: block;
  margin-bottom: 0.3rem;
  color: #fff;
}

.image-upload-field label {
  
  color: #fff; /* Label color */
  font-size: 1rem; /* Font size */
 
}

.image-upload-field input[type="file"] {

  width: 100%; /* Full width */
  padding: 0.7rem; /* Padding for the upload field */
  border-radius: 5px; /* Rounded corners */
  border: none; /* No border */
  background: rgba(255, 255, 255, 0.2); /* Background color */
  color: #ccc; /* Text color */
  font-size: 1rem; /* Font size */
}



/* Responsive Styles */

/* Styles for devices up to 1024px */
@media (max-width: 1024px) {
  .container1 {
    max-width: 0%;
  }
  .container2 {
    max-width: 90%;
  }
  
  .login-box {
    width: 400px;
    padding: 1.8rem;
    padding-bottom: 10px;
  }
  
  h2 {
    /* font-size: 1.6rem; */
  }
}

/* Styles for devices up to 768px */
@media (max-width: 768px) {
  .container1 {
    max-width: 85%;
    margin: -30px 0px 25px 30px;

  }
  .container2 {
    max-width: 85%;
    margin: 20px 0px 25px 30px;

  }
  
  .login-box {
    width: 350px;
    padding: 1.5rem ;
    padding-bottom: 10px; 
  }
  
  h2 {
    /* font-size: 1.5rem; */
  }
}

/* Styles for devices up to 425px */
@media (max-width: 425px) {
  /* .container1 {
    padding: 10px;
  }
  
  .login-box {
    width: 300px;
    padding: 1.2rem;
  } */
  @media (max-width: 425px) {
    .container1 {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px;
      height: 100vh; /* This centers it vertically */
      margin: 40px 5px 50px 25px;

    }
    .container2 {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px;
      height: 100vh; /* This centers it vertically */
      margin: 150px 5px 50px 25px;

    }
    .login-box {
      width: 300px;
      padding: 1.2rem;
      margin: 0; /* Remove the default margin */
      padding-bottom: 10px;
      margin: 150px 0;

    }
  }
  
  h2 {
    /* font-size: 1.4rem; */
  }
  
  .forgot-password {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
    font-size: 2rem;

  }
}

/* Styles for devices up to 375px */
@media (max-width: 375px) {
  .container1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: 160vh;
    margin: 50px 5px 100px 20px;
  }
  .container2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: 300vh;
    /* margin: 150px 5px 100px 20px; */
  }
  .login-box {
    width: 280px;
    padding: 1rem;
    padding-bottom: 10px;
  }
}
  
  
  h2 {
    /* font-size: 1.3rem; */
  }


/* Styles for devices up to 320px */
@media (max-width: 320px) {
  .container1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: 130vh;
    margin: -60px 5px 100px 20px;
  }
  .container2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: 220vh;
    margin: 150px 5px 100px 20px;
  }
  
  .login-box {
    width: 250px;
    padding: 0.8rem;
    padding-bottom: 10px;
  }

  
  h2 {
    /* font-size: 1.2rem; */
  }
}
  
  /* .forgot-password {
    font-size: 0.9rem;
  } */

.gender-field {
  margin-bottom: 1rem;
  
  /* Reduce bottom margin for less spacing below */
}

.radio-group {
  display: flex;
  gap: 0 !important; /* Set to 0 for no extra space between Male and Female options */
  align-items: center;
}

.radio-group input[type="radio"] {
  accent-color: #2bc03c; /* Customize color of radio button */
  margin-right: 0 !important; /* Remove right margin for tighter spacing */
}

.radio-group label {
  color: #fff;
  font-size: 1rem;
  margin: 0 !important; /* Remove any margin on the label */
  padding: 0 !important; /* Remove any padding on the label */
}

/* CSS */
/* .button-86 {
  all: unset;
  width: 100px;
  height: 30px;
  font-size: 16px;
  background: transparent;
  border: none;
  position: relative;
  color: #f0f0f0;
  cursor: pointer;
  z-index: 1;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-86::after,
.button-86::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all .4s;
}

.button-86::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: #28282d;
  border-radius: 10px;
}

.button-86::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 35px;
  background: #ffffff15;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50px;
}

.button-86:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.button-86:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.button-86:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}
/* Styles for "Go to Home" button */
/* Center the "Go to Home" button above the login form */
/* Center the button container */
.button-container-home {
  display: flex;
  justify-content: center;
  margin-bottom: 0px; /* Space below the button */
}

/* Styling for the button */
/* CSS */



/* CSS */

/* CSS */
.home {
  appearance: none;
  background-color: #111111;
  border-width: 0;
  border-radius: 8px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: Inter,sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1em;
  margin: 0;
  opacity: 1;
  outline: 0;
  padding: 1.5em 2.2em;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-rendering: geometricprecision;
  text-transform: uppercase;
  transition: opacity 300ms cubic-bezier(.694, 0, 0.335, 1),background-color 100ms cubic-bezier(.694, 0, 0.335, 1),color 100ms cubic-bezier(.694, 0, 0.335, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  white-space: nowrap;
  
}

.home:before {
  animation: opacityFallbackOut .5s step-end forwards;
  backface-visibility: hidden;
  background-color: #696969;
  clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateZ(0);
  transition: clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1), -webkit-clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1);
  width: 100%;
}

.home:hover:before {
  animation: opacityFallbackIn 0s step-start forwards;
  clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
}

.home:after {
  background-color: #FFFFFF;
}

.home span {
  z-index: 1;
  position: relative;
}
/* Popup Styles */
.popup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Make sure it appears above other elements */
}

.popup-content {
  background-color: #fff;
  padding: 20px;
  width: 300px;
  border-radius: 10px;
  text-align: center;
  position: relative;
}

.popup-content h2 {
  /* font-size: 1.5rem; */
  margin-bottom: 10px;
  color: #111;
}

.popup-content p {
  font-size: 1rem;
  color: #333;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}
