@use '../../../assets/scss/customVariables.scss' as *;

.loginModalContainer {
  width: 100%;
  padding: 53px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.resetPassword {
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 22.66px;
  color: #A4A8BB;
}

.buttonsContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  .toggleLoginButton {
    cursor: pointer;
    color: $primary-color;
    margin-top: 20px;
  }

  .forgotPasswordButton {
    cursor: pointer;
    color: $primary-color;
  }
}

.dividerOr {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 10px 0;
  height: 54px;
  position: relative;

  .line {
    width: 100%;
    height: 1px;
    background-color: #DDDDDD;
  }

  .or {
    width: 54px;
    height: 54px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
    color: #5E5E5E;
  }
}
