/* LoginSuccess Success Page Styles */
.login-success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
}

.login-success-container {
  width: 732px;
  height: 657px;
  flex-shrink: 0;
  /* background: #ebebeb; */
  /* border-radius: 24px; */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
}

.login-success-header {
  margin-bottom: 18px;
}

.login-success-waffle {
  width: 110px;
  height: 110px;
  margin-bottom: 12px;
}

.login-success-title {
  color: var(--txt-primary);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.login-success-body {
  color: var(--txt-primary);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.login-success-ok {
  width: 328px;
  height: 96px;
  margin-top:20px;
  cursor: pointer;
}

.login-success-ok:active {
  /* background: linear-gradient(180deg, #2e9c3a 0%, #4caf50 100%); */
}

@media (max-width: 800px) {
  .login-success-container {
    width: 98vw;
    /* height: auto; */
    min-width: 0;
    min-height: 0;
    padding: 12px 2vw;
  }

  .login-success-ok {
    width: 90vw;
    min-width: 0;
    border: none;
  }
}


@media (max-width:480px){
  .login-success-title{
    font-size: 20px;
    font-weight: 600;
  }
  .login-success-body{
    font-weight: 500;
    font-size: 14px;
  }
  .login-success-ok{
    width: 246px;
    height: 72px;
  }
}