body {
  font-family: 'Poppins', sans-serif;
  background: white;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  overflow: hidden;
  justify-content: center;
   align-items: center;
}

.container {
  background: linear-gradient(to right, rgba(27, 77, 62), rgba(80, 180, 120));
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 100%;
  height: 90vh;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.form-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 10px;
}

.logo-container {
  text-align: center;
  margin-bottom: 20px;
}

.logo {
  max-width: 100px;
  border-radius: 50%;
}

h2 {
  color: white;
  margin-top: 10px;
  font-weight: 600;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 400;
  color: white;
  text-align: left;
}

.container input[type="text"],
.container input[type="password"],
.container input[type="tel"],
.container input[type="email"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid black;
  border-radius: 6px;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.container input[type="text"]:focus,
.container input[type="password"]:focus,
.container input[type="tel"]:focus,
.container input[type="email"]:focus {
  border-color: black;
  box-shadow: 0 0 8px black;
  outline: none;
}

.upload-text,
.dropdown-text {
  margin-bottom: 10px;
  font-size: 14px;
  color: white;
}

.custom-file-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #e8e8e8;
  background-color: rgba(84, 88, 97, 0.7);
  padding: 1rem;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 1px;
}

.custom-file-upload svg {
  height: 30px;
  fill: #e8e8e8;
}

input[type="file"] {
  display: none;
}

.file-name-display {
  display: block;
  margin-top: 1px;
  color: rgba(27, 77, 62);
  font-size: 0.9rem;
  font-style: italic;
  background-color: white;
  border-radius: 15px;
  width: 200px;
  text-align: center;
  margin-bottom: 5px;
}

.dropdown-container {
  position: relative;
  margin-bottom: 15px;
}

.dropdown-button {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: white;
  cursor: pointer;
  color: black;
}

.dropdown-list {
  display: none;
  position: absolute;
  width: 100%;
  background: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
  top: 100%;
  left: 0;
  margin-top: 5px;
}

.dropdown-list label {
  display: block;
  padding: 8px;
  font-size: 14px;
  cursor: pointer;
  color: black;
}

.dropdown-list label:hover {
  background: #f4f4f4;
}

.visible {
  display: block;
}

.selected-items-display {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  color: white;
}

.submit-btn-login {
  width: 92%;
  padding: 12px;
  background-color: white;
  color: rgba(27, 77, 62);
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.submit-btn-login a {
  color: rgba(27, 77, 62);
  text-decoration: none;
}

.submit-btn-login:hover {
  background-color: rgba(27, 77, 62);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.submit-btn-login:hover a {
  color: white;
}

/* Custom Scrollbar */
.form-content::-webkit-scrollbar {
  width: 8px;
}

.form-content::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.form-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* Responsive Styles */
@media (max-width: 480px) {
  .container {
    height: 95vh;
    padding: 15px;
    max-width: 90%;
    margin: auto;
  }

  .form-content {
    padding-right: 5px;
  }

  .dropdown-button,
  .submit-btn-login {
    font-size: 14px;
  }
}


 /*log in*/
 @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

 .login-body-login{
   justify-content: center;
   align-items: center;
 }

 .container-login {
   background:linear-gradient(to right, rgba(27, 77, 62), rgba(80, 180, 120));
   padding: 40px;
   border-radius: 15px;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
   width: 300px;
   max-width: 400px;
   text-align: center;
   transition: transform 0.3s, opacity 0.3s;
 }

 .logo-container-login {
   margin-bottom: 20px;
 }

 .logo-login {
   max-width: 100px;
   border-radius: 50px;
 }

 .container-login h2 {
   margin: 0 0 20px;
   color: white;
   font-weight: 600;
 }

 .container-login label {
   display: block;
   margin-bottom: 5px;
   font-weight: 4 00;
   color: white;
   text-align: left;
 }

 .container-login input[type="text"],
 .container-login input[type="password"],
 .container-login input[type="email"] {
   width: 100%;
   padding: 12px;
   margin-bottom: 15px;
   border: 1px solid black;
   border-radius: 6px;
   box-sizing: border-box;
   transition: border-color 0.3s, box-shadow 0.3s;
 }

 .container-login input[type="text"]:focus,
 .container-login input[type="password"]:focus,
 .container-login input[type="email"]:focus {
   border-color: black;
   box-shadow: 0 0 8px black;
   outline: none;
 }



 .submit-btn:hover {
   background-color: rgba(27, 77, 62);
   color: white;
   transform: translateY(-2px);
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
 }
 .submit-btn:hover a {
  color: white;
}

  
 

 .create-account-login {
   color: white;
   cursor: pointer;
   margin-top: 15px;
   display: block;
   font-weight: 600;
   transition: color 0.3s;
 }

 .toggle-link:hover {
   color: white;
 }

 .fade-in {
   animation: fadeIn 1s ease-in-out;
 }

 .container-login a{
   text-decoration: none;

 }

 .submit-btn-login{
   width: 100%;
   padding: 12px;
   background-color: white;
   color: rgba(27, 77, 62) ;
   border: none;
   border-radius: 6px;
   font-size: 16px;
   font-weight: 600;
   cursor: pointer;
   transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
 }

 .submit-btn-login a{
   color:  rgba(27, 77, 62) ;
 }

 .submit-btn-login:hover {
   background-color: rgba(27, 77, 62);
   color: white;
   transform: translateY(-2px);
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
 }
 .submit-btn-login:hover a {
  color: white;}

 .register-btn-login {
    width: 100%;
   padding: 10px 24px;
   background-color: white;
   color: rgba(27, 77, 62) ;
   border: none;
   border-radius: 6px;
   font-size: 16px;
   font-weight: 600;
   cursor: pointer;
   transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
   text-decoration: none;
 }

 .register-btn-login:hover {
   background-color: rgba(27, 77, 62);
   transform: translateY(-2px);
   color: white;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
 }

 .submit-btn-login a:hover{
   color: white;
 }
 @keyframes fadeIn {
   0% {
     opacity: 0;
     transform: translateY(-20px);
   }
   100% {
     opacity: 1;
     transform: translateY(0);
   }
 }