
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: rgb(183, 219, 246);
}

.background {
  display: flex;
  /* flex-direction: column; */
  height: 100vh;
}

.image-container {
  flex: 1;
  position: relative;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-container {
  flex: 1;
  background-color: rgb(183, 219, 246);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 -12rem;
}

.logo {
  border-radius: 30px;
  margin-top: -10rem;
  width: 40%;
  height: auto;
}

  
  .register {
    z-index: 1;
    font-family: 'Poppins', sans-serif;
    opacity: 100%;
    font-weight: 900;
    font-size: 1rem;
  }
  
p{
  margin-top: 8rem;
}

#login{
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}
.login-form{
  display: flex;
  flex-direction: row;
 
}
#login-email{
  width: 70%;
  margin-right: -4rem;
  border: 1px solid black;
  border-radius: 30px;
}
#login-password{
  width: 70%;
  margin-right: -3rem;
  border: 1px solid black;
  border-radius: 30px;
}
h2 {
  color: rgba(1, 7, 6, 0.666);
  margin-bottom: 0px;
  margin-top: -5px;
}
h3 {
  text-align: center;
}
select, button {
  margin-top: 10px;
  padding: 8px;
  font-size: 14px; 
  border: 1px solid #ced4da;
  border-radius: 4px;
}
#roleDropdown {
  width: 15%;
  text-align: center;
}
#dropDown {
  width: 15%;
  text-align: center;
  margin-bottom: 20px;
}
.signup-form {
  display: none;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  width: 500px;
}
form {
  display: flex ;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
label {
  font-size: 14px;
  color: #495057;
}
input, select, button {
  width: 400px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  box-sizing: border-box;
}
button {
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 200px;
}
button:hover {
  background-color: #0056b3;
}
.signup-form h3 {
  color: #007bff;
  margin-bottom: 15px;
}
.signup-form hr {
  margin: 15px 0;
  border: 1px solid #ced4da;
}
#cleanerSignupForm label {
  font-size: 14px;
  color: #495057;
}

#cleanerSignupForm input[type="file"] {
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .background {
    flex-direction: column;
  }
  .text-container {
    padding: 0 1rem; /* Adjusted padding for smaller screens */
  }

  .logo {
    margin-top: -3rem;
  }

  select,
  button {
    width: 100%; /* Full width on smaller screens */
  }

  input,
  select,
  button {
    width: 100%;
  }

  .signup-form {
    width: 100%;
  }

  form {
    width: 100%;
  }
}