.auth {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
}
.auth__header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 100%;
  background-color: #fff;
  border-bottom-right-radius: 20px;
	border-bottom-left-radius: 20px;
}

.auth__main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
  
.auth__form{
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 350px;
}

.auth__form-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background-color: #fff;
  width: 534px;
  min-height: 312px;
}


.auth__footer {
  display: flex;
  background-color: #fff;
  border-top-right-radius: 20px;
	border-top-left-radius: 20px;
  min-height: 225px;
  padding: 40px 24px;
  gap: 100px;
}

.auth__logo {
  width: 140px;
  height: 67px;
}

.auth__title {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
}

.auth__text {
  font-size: 14px;
  font-weight: 400;
  color:#6B7280;
}

.auth__links {
  font-size: 20px;
  font-weight: 400;
  color:#000 !important;
  transition: color 0.5s;
}
.auth__links:hover {
  color:#5b5858 !important;
}

.auth__icon-info{
  cursor: pointer;
  margin-left: 2px;
  width: 16px;
  height: 16px;
  stroke: #0C83FF !important;
}


.password {
	position: relative;
}

.password-control {
	position: absolute;
	top: 3px;
	right: 6px;
	display: inline-block;
	width: 32px;
	height: 32px;
	background: url("../images/view.svg") 0 0 no-repeat;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background-color: transparent;
}
.password-control.view {
	background: url("../images/no-view.svg") 0 0 no-repeat;
}


