@import url("../../assets-custom/root.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,body{
  overflow-x: hidden;
  /* overflow-y: hidden; */
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: var(--ea-secondary-color);
}

.login-btn {
  background-color: #ff5722;
  color: white;
  padding: 10px 20px;
  /* border-radius: 5px; */
}

.sign-in-btn {
  border: 1px solid #ff5722;
  padding: 10px 20px;
  /* border-radius: 5px; */
}

.log-in{
   margin:20px;
}

.login-container {
 
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 100vh; */
  /* position: relative; */
}

.login-container img {
  /* max-width: 50%; */
  height: auto;
}

.login-form {
  /* background: var(--ea-white-color); */
  padding: 40px;
  border-radius: 10px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
  max-width: 100%;
}

.login-form h2 {
  margin: 0 0 20px;
  font-family: 'Poppins';
  font-size: 48px;
  font-weight: 600;
  line-height: 20px;
  text-align: left;
}

.login-form p {
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 30px;
  margin-bottom: 52px;
}

.login-form span {
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-align: left;
}

.login-form input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.remember-me {
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.remember-me input {
  margin-right: 10px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remember-me label {
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--ea-black-color);
}

.login-form button {
  background-color: var(--ea-black-color);
  color: var(--ea-white-color);
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  margin-top: 21px;
}

.forgot-password {
  text-align: end;
  margin-top: 24px;
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.forgot-password a {
  text-decoration: none;
  color: rgba(77, 77, 77, 1);
}
