label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  color: #ffffff;
}

#app {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 40px);
  padding: 0;
}

.login {
  background-color: #050643;
  background-image: linear-gradient(40deg, #DF4D4D 0%, #FAA019 100%);
}

.login button {
  height: 50px;
  width: 100%;
  font-size: 1.3rem;
  font-weight: 700;
  background: #050643;
  color: white;
  margin-bottom: 0.5rem;
  margin-top: 50px;
}

.login button:disabled {
  background-color: #CCCCCC;
}

.login input {
  margin: auto;
  margin-bottom: 30px;
  height: 35px;
  border: 0px;
  border-radius: 10px;
  background-color: #FFFFFF55;
  font-size: 20pt;
  text-align: center;
  color: #ffffff;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 10px;
}

.login input,
#verification-modal input {
  width: 100%;
  margin-bottom: 1rem;
}

.login input::placeholder {
  color: #FFFFFF77;
}

.login label {
  color: #FFFFFFAA;
  font-size: 8pt;
  font-weight: lighter;
  margin-top: 2px;
  margin-bottom: 20px;
}

.login-logo {
  margin-top: 30px;
  margin-bottom: 100px;
}

.login-logo img {
  margin: 0 auto;
}

.login-logo-size {
  height: auto;
  max-height: 300px;
  width: auto;
  display: block;
}

.powered-by {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  font-size: 10px;
}

.powered-by img {
  height: 30px;
  margin: 8px;
}

.login-by-phone {
  padding: 0;
  height: 100vh !important;
  color: #ffffff;
}

.login-by-phone,
#verification-modal {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#verification-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login::before {
  content: "";
  position: absolute;
  top: -32%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background-image: radial-gradient(circle at center, #DF4D4D, #e6941854 50%, rgba(250, 160, 25, 0) 70%, transparent 100%);
  border-radius: 50%;
  z-index: -1;
}

#phone-form {
  min-width: 350px;
}

#phone-form input {
  background-color: white;
  color: #050643;
  box-shadow: 0px 4px 1px -1px #050643;
}

#phone-form div {
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
}

#phone-form input::placeholder {
  color: #8c8c8c;
}

#phone-form,
#verification-modal {
  min-width: 350px;
}

#verification-modal input {
  background-color: white;
  color: #050643;
  box-shadow: 0px 4px 1px -1px #050643;
}

#verification-modal div {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#verification-modal input::placeholder {
  color: #8c8c8c;
}

/* Hide the default checkbox */
input[type="checkbox"] {
  display: none;
}

/* Style the label to look like a toggle switch */
.toggle-label {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggle-label::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 36px;
  transition: background-color 0.4s;
}

.toggle-label::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.4s;
}

input[type="checkbox"]:checked+.toggle-label::before {
  background-color: #4caf50;
}

input[type="checkbox"]:checked+.toggle-label::after {
  transform: translateX(26px);
}

.sms-consent-text {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  font-size: 12px;
  max-width: 250px;
  text-align: left;
}

.org-name {
  margin-top: 15px;
  text-align: center;
}