@import url("https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700&display=swap");

body {
  font-family: Satoshi;
}
:root {
  --white-75: #ffffffbf;
  --gray-100: #f5f5f5;
}
.bg-container {
  display: flex;
  min-height: 100vh;
  background: url("../images/login-bg-screen.png") no-repeat 100% 100%;
  background-size: contain;
  padding: 40px 86px;
  align-items: center;
}

.login-card {
  width: 500px;
  max-height: 660px;
  padding:34px 35px;
  gap: var(--Spacing---600, 24px);
  border-radius: 40px;
  border: 1px solid var(--Gray-100, #f5f5f5);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0px 529px 148px 0px rgba(171, 171, 171, 0),
    0px 338px 135px 0px rgba(171, 171, 171, 0.01),
    0px 190px 114px 0px rgba(171, 171, 171, 0.05),
    0px 85px 85px 0px rgba(171, 171, 171, 0.09),
    0px 21px 47px 0px rgba(171, 171, 171, 0.1);
}

.logo-img img {
  width: 240px;
  object-fit: cover;
}

.green {
  color: #64bd8f;
  font-family: Satoshi;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}

.login-card h2 {
  margin: 0px 0 36px;
  color: #000;
  align-self: stretch;
  font-family: Satoshi;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -0.72px;
}
.heading-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0px 5px 0px;
}
.welcome-text {
  color: #000;
  margin: 0px;
  font-family: Satoshi;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}
#login-form{
  margin: 0;
}
.box-content {
  width: 100%;
}
.form-group-container {
  width: 100%;
  margin-bottom: 18px;
}
.form-label-text {
  color: #000;
  font-family: Satoshi;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}
.text-box {
  padding: 10px 15px;
  border-radius: 9px;
  border: 1px solid var(--Strokes-Disable, #dddfe2);
  background: #fff;
  width: 100%;
}
.text-box:focus {
  outline: none;
}
.text-box::placeholder {
  color: #808080;
  font-family: Satoshi;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.forgot {
  color: #4285f4;
  font-family: Satoshi;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 122%;
  text-decoration: none;
}
.auth-btn {
  margin-top: 10px;
  color: white;
  padding: 12px;
  width: 236px;
  height: 54px;
  flex-shrink: 0;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 10px;
  background: #69bf90;
}
.auth-btn:hover {
  background-color: #1ea275;
}
.signup-container {
  display: flex;
  justify-content: end;
  align-items: center;
}
.signup {
  color: #8d8d8d;
  font-family: Satoshi;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
.signup a {
  color: #69bf90;
  font-family: Satoshi;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}
.required::after {
  content: " *";
  color: red;
  font-size: 16px;
}
.input-error {
  color: red;
  font-family: Satoshi;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
}
@media (max-width: 768px) {
  .bg-container {
    padding: 20px;
  }
  .login-card {
    padding: 30px 20px;
    margin: auto !important;
  }
}
