:root {
  --main-color: #007cc3;
}

body, html {
  height: 100%;
  margin: 0;
  font-family: 'Arial', sans-serif;
}

.signup {
  height: 100%;
  width: 100%;
  margin: 0;
}

.signup-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
}

.signup-first-coloum {
  background-color: var(--main-color);
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0rem 2rem;
  justify-content: center;
  color: white;
}
.main-text{
  margin-top: -1rem;
}
.signup-second-coloum {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  overflow-x: hidden;
}

.logo {
  text-align: center;
}

.logo img {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
}

.login-title {
  text-align: center;
  margin-top: -1rem;
}

.welcome-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
  text-align: center;
  margin-top: -1rem;
}

.social-icon {
  display: flex;
  flex-direction: row;
  gap: 1rem;  
  align-items: center;
  width: 100%;
  justify-content: center;
}

.google, .facebook {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  padding: 1rem 1rem;
  border: 2px solid #ebebeb;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.google:hover, .facebook:hover {
  background-color: #ebebeb;
}

.with-email {
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.with-email::before,
.with-email::after {
  content: "";
  background-color: #007cc3;
  height: 0.1rem;
  width: 5rem;
}

.input-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1rem auto;
  width: 90%;
  padding: 0.5rem 1rem;
  border: 2px solid #ebebeb;
  border-radius: 5px;
}

.input-field input {
  flex: 1;
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  outline: none;
}

.show-password-btn {
  background-color: #ebebeb;
  padding: 0.5rem 1rem;
  border: 2px solid #ebebeb;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.show-password-btn:hover {
  background-color: #d5d5d5;
}

.remember-forgot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.remember-me,
.forgot-password {
  color: #007cc3;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}

.remember-me:hover,
.forgot-password:hover {
  color: #005580;
}

.login-btn {
  background-color: var(--main-color);
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
  margin-top: 1rem;
  transition: background-color 0.3s ease-in-out;
}

.login-btn:hover {
  background-color: #005580;
}

.signup-link {
  text-align: center;
  margin-top: 1rem;
  color: #555;
}

.signup-link a {
  color: #007cc3;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.signup-link a:hover {
  color: #005580;
}

/* Add more styling as needed */

@media (max-width: 850px) {
  .signup-item {
    display: grid;
    grid-template-columns: repeat(1, 2fr);
    align-items: center;
    justify-content: center;
  }
  .signup-first-coloum {
    background-color: var(--main-color);
    height: auto;
  }
  .login-img{
    height: 200px;
  }
}

@media (max-width: 400px) {
  .signup-deatil {
    padding: 0 1rem; 
  }
  .form {
    width: 95%;
  }
  .with-email::before,
.with-email::after {
  content: "";
  background-color: #007cc3;
  height: 0.1rem;
  width: 3rem;
}
}
