.modal-title {
  padding-left: 25px;
  background-color: #fff;
  height: 49px;
  display: flex;
  align-items: center;
  font-family: Inter;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  position: relative;
}

.login-modal-body {
  padding: 15px 25px;
  max-width: 100%;
}

.login-modal-body input {
  background: white !important;
}

/* Fix for Grid layout */
.login-modal-body.MuiGrid-container {
  display: flex !important;
  flex-wrap: wrap !important;
  width: 100%;
}

.login-modal-body .MuiGrid-item {
  display: flex;
  flex-direction: column;
}

.login-modal-body__email {
  margin-bottom: 20px;
}

.login-modal-body__password {
  margin-bottom: 20px;
}

.login-action-button button {
  padding: 10px;
  width: 100%;
  margin: 10px 0;
  border: none;
  border-radius: 0;
  height: 45px;
  font-weight: 600;
  font-size: 26px;
  line-height: 18px;
  color: white;
  cursor: pointer;
  outline: none;
  background-color: #212529;
}
.login-action-button button:hover {
  background-color: #505050;
  border-color: #505050;
}
.login-logo-tff{
    height: 60px;
}
.server_auth__error {
    color: red;
    padding-left: 25px;
    padding-top: 15px;
    font-size: 12px;
    font-family: Inter;
    font-style: normal;
}

.info-text-for-login {
    font-size: 14px;
    padding-left: 10px;
    margin-bottom: 4px;
}
.forgot-password {
  text-align: center;
}
.forgot-password span,
.forgot-password a {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
.forgot-password span:hover,
.forgot-password a:hover {
  text-decoration: underline;
}

/* Sign Up Form Specific Styles */
.login-modal-body__name-fields {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.login-modal-body__first-name,
.login-modal-body__last-name {
  flex: 1;
}

.login-modal-body__password-confirmation {
  margin-bottom: 20px;
}

.login-action-button button:disabled {
  background-color: #999;
  cursor: not-allowed;
}

.login-action-button button:disabled:hover {
  background-color: #999;
}