@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.login-body {
  font-family: "Roboto", sans-serif;
  height: 100vh;
  min-width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat !important;
  background: url("login.svg");
  padding: 0 100px 0 50px;
  color: #3a3a3a;
}

.login-card {
  background: rgba(255, 255, 255, 0.69);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5.3px);
  -webkit-backdrop-filter: blur(5.3px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 15px 40px 45px 40px;
  width: 380px;
}


.form-wrap {
  text-align: center;
  margin-top: 20px;
}
.form-wrap input[type="email"],
.form-wrap input[type="password"] {
  width: 100%;
  border-radius: 7px;
  padding: 12px 10px;
  margin: 8px 0;
  background: white;
  border: 1px solid #d9d9d9;
}

.form-wrap input:focus {
  outline: none;
}

.image-wrap {
  text-align: right;
  margin-bottom: 50px;
}

.image-wrap img {
  height: 30px;
}

.rem-and-forget {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-top: 3px;
}

.rem-and-forget div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rem-and-forget .forgot-p {
  color: #ff221e;
  cursor: pointer;
}

.rem-and-forget .forgot-p:hover {
    color: #3f51b5;
}

.rem-and-forget label {
  cursor: pointer;
}

.form-wrap h3 {
  font-weight: 700;
  font-size: 18px;
  padding-bottom: 17px;
}

.submit-btn {
  background: #3f51b5;
  border: 1px solid #3f51b5;
  padding: 10px 3px;
  width: 100%;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  margin-top: 20px;
  font-weight: 400;
  cursor: pointer;
}

.submit-btn:hover {
  background: #079bf3;
}

.other-login-wrap {
  margin: 15px 0;
  display: grid;
  grid-template-columns: auto auto auto;
  place-items: center;
}

.other-login-wrap div {
  border-bottom: 2px solid#DBDBDB;
  width: 100%;
}

.other-login-wrap span {
  font-size: 14px;
}

.office-btn-wrap {
  display: flex;
  justify-content: center;
}

.office-btn {
  display: flex;
  align-items: center;
  border: 1px solid #ff221e;
  border-radius: 4px;
  padding: 0 6px 0 0;
  font-size: 14px;
  margin-top: 10px;
  cursor: pointer;
}

.office-btn:hover {
  border: 1px solid #079bf3;
}

.footer-text {
  font-size: 13.5px;
  padding-top: 35px;
}

@media (max-width: 450px) {
  .login-card {
    padding: 15px 20px;
  }

  .login-body {
    padding: 0 30px 0 30px;
  }
}

/* @media(min-width: 1500px) {
    .login-body {
        background: url(".login.svg");
    }
} */

