* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
:root {
  --text-primary: #121217;
  --text-secondary: #6c6c89;
  --btn-primary: #84bd00;
  --input-border: #d1d1db;
  --light: #fff;
}
#login {
  background-image: url("../img/Get Started.png");
  background-size: cover;
}
a {
  text-decoration: none;
}
h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 40px;
}
p {
  color: var(--text-secondary);
}
input::placeholder {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.primary-btn {
  width: 396px;
  max-width: 100%;
  background-color: var(--btn-primary);
  text-align: center;
  color: var(--light);
  border: none;
  border-radius: 12px;
  padding: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}
.secondary-btn {
  width: 396px;
  max-width: 100%;
  background-color: var(--light);
  border-radius: 12px;
  border: 1px solid var(--input-border);
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 700;
  padding: 10px;
}
input[type="text"],
input[type="tel"],
input[type="email"] {
  width: 396px;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--input-border);
  border-radius: 8px;
  font-size: 14px;
  background-color: var(--light);
  background-position: 10px 10px;
  background-repeat: no-repeat;
  padding: 12px 40px;
  box-shadow: 0px 1px 2px 0px rgba(18, 18, 23, 0.05);
  /* outline-color: #76A900; */
  outline: 0 !important;
}
input[type="text"]:focus,
input[type="email"]:focus {
  box-shadow: 0 1px 2px 0px rgba(18, 18, 23, 0.05), 0 0 0 1px #76a900 inset;
  border: 1px solid #76a900;
}
/* input[type=email] {
    width: 396px;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--input-border);
    border-radius: 8px;
    font-size: 14px;
    background-color: var(--light);
    background-position: 10px 10px; 
    background-repeat: no-repeat;
    padding: 12px 20px 12px 40px;
    box-shadow: 0px 1px 2px 0px rgba(18, 18, 23, 0.05);
    outline-color: #76A900;
} */
label {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  padding-bottom: 8px;
  color: #121217;
}
#login .header .top {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
}
#login .header .header-title {
  display: flex;
  align-items: baseline;
}
#login .header .header-desc {
  font-size: 14px;
  color: #000000;
  font-weight: 500;
  line-height: 24px;
}
#login .header .header-btn {
  padding: 8px 12px;
  background: #f7fdff;
  border: 1px solid var(--input-border);
  border-radius: 12px;
  box-shadow: 0px 1px 2px 0px rgba(18, 18, 23, 0.05);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  color: #121217;
}
#login .content .main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
#login .content .card {
  margin-bottom: 30px;
  border: none;
  width: 524px;
  max-width: 100%;
  box-shadow: 0px 25px 50px -12px rgba(18, 18, 23, 0.25);
  border-radius: 24px;
  /* border-top-right-radius: 24px;
    border-top-left-radius: 24px ; */
  /* padding: 60px; */
  /* box-shadow: 0 14px 8px 0 #fff, 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
}
#login .content .email-field input[type="email"]:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}
#empty .select-text input[type="email"]:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
}
#login .content .login-code input[type="text"] {
  background-image: url("../img/key.svg");
}
#login .content .email-field,
.login-code {
  margin-bottom: 20px;
}
#login .content .links {
  display: flex;
  flex-direction: column;
}
#login .content .card2 {
  /* margin-top: 12px; */
  border-top: 1px solid var(--input-border);
  padding-top: 10px;
  /* width: 524px; */
  /* max-width: 100%; */
  font-size: 12px;
  font-weight: 400;
  color: var(--text-secondary);
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 0px 0px 0 rgba(0,0,0,.25); */
  /* padding: 12px; */
  /* border-bottom-right-radius: 24px; */
  /* border-bottom-left-radius: 24px ; */
  text-align: center;
}
#login .content .highlight {
  color: var(--btn-primary);
  font-weight: 500;
}
#login .content .tag {
  font-size: 14px;
  margin-top: 12px;
  font-weight: 500;
  line-height: 24px;
  color: #6c6c89;
  opacity: 0.6;
}
/* input[type="text"]:focus {
    border-color: red;
} */
#login .email-field {
  position: relative;
}
#login .email-field img {
  position: absolute;
  right: 18px;
  bottom: 11px;
}
svg.email-icon {
  position: absolute;
  left: 10px;
  top: 44px;
}
.mobile-header-btn {
  display: none;
}
#login .mobile-header-btn a {
  border: 1px solid #d1d1db;
  border-radius: 12px;
  padding: 10px;
  color: #000;
  font-weight: 700;
}
#continue_btn:disabled {
  background: #d1d1db !important;
}
@media (max-width: 380px) {
  #login .content .main {
    margin: 30px 0;
    height: auto;
    /* height: 70vh !important; */
  }
}
@media (max-width: 768px) {
  #login .content .main {
    /* height: 65vh; */
    height: auto;
    margin: 30px 0;
  }
  #login .header .top {
    display: flex;
    flex-direction: row;
    padding: 30px 17px;
    gap: 15px;
  }
  #login .logo {
    width: 35vw;
  }
  #login .header .header-title {
    display: none;
  }
  #login .mobile-header-btn {
    display: block;
  }
  #login .content .card {
    /* padding: 24px; */
    height: auto !important;
  }
  .card-title {
    height: auto !important;
    padding: 40px 25px !important;
    padding-bottom: 30px !important;
  }
  .top .for-mobile {
    display: block !important;
  }
  /* .auth-card {
    margin-top: 150px;
  } */
  #login .content .card2 {
    /* margin-top: 10px; */
    padding: 12px 27px;
  }
  .card2 p {
    margin: 0;
  }
  #login .email-field img {
    right: 10px;
  }
  .layers {
    gap: 15px !important;
  }
}
.card2 p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
.layers a {
  cursor: default;
}
.layers {
  display: flex;
  gap: 36px;
}
.card-title {
  height: 500px;
  padding: 60px;
}
/* ================================================================== */
.auth-card input[readOnly] {
  cursor: no-drop;
  background: #eeeeee;
}
.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: #76a900 !important;
}
