:root {
  --loginBackGround: "";
  --palette_1: #39693B;
  --palette_1_contrast: #ffffff;
  --dot: #f4f1f199;
}
body{
  margin: 0;
  font-family: Roboto, Arial, Helvetica, sans-serif;
}
.prevent-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.main{
  visibility: hidden;
  background-image: var(--loginBackGround);
  background-size: cover;
  height:100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  align-content: stretch;
}
.content-wrapper{
  position: relative;
  background:white;
  border: 2px solid #C2C9BD;
  border-right: 0;
  width:700px;
  box-sizing: border-box;
  border-radius: 24px 0 0 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.logo-wrapper{
  padding-left: 16px;
}
.logo-wrapper img{
  height: 42px;
}
.details-wrapper{
  flex: 1;
  z-index: 2;
  display: grid;
  gap: 36px;
  padding-left: 16px;
  padding-bottom: 64px;
}
.title{
  font-size: 45px;
  font-weight: 400;
  line-height: 52px;
  text-align: left;
  color: #002106;
}
.subtitle{
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-align: left;
  color: #424940;
}
.dotted-wrapper{
  position: absolute;
  right: 0;
  bottom: calc(50% - 160px);
  width: 280px;
  height: 320px;
  background-image: radial-gradient(var(--dot) 25.6%, transparent 33.6%);
  background-position: 66px 42px;
  background-size: 56px 56px;
  background-color: rgb(255, 255, 255);
}
.bottom-border{
  background: var(--palette_1);
  height: 5px;
}
.btn-wrapper{
  display: flex;
  flex-direction: column;
  align-items: end;
  padding: 10px 0;
}
.btn-wrapper a{
  text-decoration: none;
  color: var(--palette_1_contrast);
}
.button-m3{
  background: var(--palette_1);
  width: 163px;
  height: 56px;
  padding: 10px 24px;
  border-radius: 100px;
  display: inline-grid;
  align-content: center;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.10000000149011612px;
  text-align: center;
  cursor: pointer;
}
.button-m3:hover{
  opacity: 0.9;
}
.button-m3:active{
  opacity: 0.7;
}

/** medium */
@media (max-width: 839.9px) {
  .main {
    flex-direction: column;
  }
  .content-wrapper{
    width: 100%;
    border-radius: 24px 24px 0 0;
    padding: 24px;
    border: 2px solid #C2C9BD;
    border-bottom: 0;
  }
  .logo-wrapper img{
    height: 38px;
  }
  .details-wrapper{
    padding-bottom: 0;
    gap: 16px;
  }
  .title{
    font-size: 36px;
    font-weight: 400;
    line-height: 44px;
  }
  .subtitle{
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.25px;
  }
  .dotted-wrapper{
    zoom: 0.8;
    width: 350px;
    background-position: 0 42px;
  }
}
/** small*/
@media (max-width: 599.9px) {
  .logo-wrapper img{
    height: 36px;
  }
  .title{
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
  }
  .dotted-wrapper{
    zoom: 0.6;
  }
}



/*** DIALOG **/
#backdrop{
  display: none; /**use "display: flex" to show */
  position: absolute;
  z-index: 3;
  height: 100%;
  width: 100%;
  background: #00000025;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
}
#dialog{
  width: 100%;
  max-width: 560px;
  min-height: 200px;
  max-height: 80%;
  background: white;
  border: 1px solid #C2C9BD;
  border-radius: 28px;
  padding: 24px;
  box-sizing: border-box;
  top: calc(50% - 100px);
  left: calc(50% - 230px);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: auto;
}
.d-content{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: auto;
}
.d-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.d-title{
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
}
.d-message{
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.25px;
  text-align: left;
  color: #424940;
  overflow: auto;
  max-height: 480px;
}
.d-action{
  text-align: right;
}
.d-button{
  display: inline-block;
  padding: 10px 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.10000000149011612px;
  color: var(--palette_1);
  cursor: pointer;
  border-radius: 100px;
}
.d-button:hover{
  background: #00000010;
}
.d-button:active{
  background: #00000030;
}



/*** LOADING **/
.lds-ring,
.lds-ring div {
  box-sizing: border-box;
}
.lds-ring {
  display: inline-block;
  position: absolute;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
  width: 80px;
  height: 80px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid currentColor;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: currentColor transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}



