.enter {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1D1C1C;
}

.enter__container {
  width: 100%;
  max-width: 460px;
  background-color: #161616;
  border-radius: 20px;
  padding: 40px;
  margin: 20px;
}

.enter__logo {
  width: 100%;
  text-align: center;
  margin-bottom: 48px;
}

.enter__title {
  font-family: 'Roboto-Bold';
  font-size: 28px;
  line-height: 38px;
  color: #fff;
  margin-bottom: 24px;
}

.enter__subtitle {
  font-family: 'Roboto-Regular';
  font-size: 15px;
  line-height: 22px;
  color: #fff;
}

.enter__forget {
  margin-top: 10px;
  margin-bottom: 26px;
}

.enter__forget-link {
  font-family: 'Roboto-Regular';
  font-size: 14px;
  line-height: 30px;
  color: #FF1493;
  text-decoration: none;
}

.btn__reg,
.btn__enter,
.btn__later {
  width: 100%;
  margin-bottom: 48px;
}

.btn__enter:disabled,
.btn__reg:disabled,
.btn__later:disabled,
.btn__later-second:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #ccc !important;
}

.btn__later-first {
  margin-top: 24px;
}

.btn__later-third {
  margin-bottom: 24px;
}

.btn__change-password {
  margin-top: 24px;
  margin-bottom: 0;
}

.btn__save-password {
  margin-top: 24px;
  margin-bottom: 0;
}

.enter__question {
  font-family: 'Roboto-Regular';
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  margin-bottom: 8px;
}

.enter__registration {
  text-align: center;
}

.enter__registration-link {
  font-family: 'Roboto-Regular';
  font-size: 14px;
  line-height: 30px;
  color: #FF1493;
  text-decoration: none;
}

.enter__check {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 24px 0 36px 0;
}

.enter__check label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
}

.enter__check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: relative;
  height: 20px;
  width: 20px;
  min-width: 20px;
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 4px;
  transition: all 0.3s;
}

.enter__check input[type="checkbox"]:checked ~ .checkmark {
  background-color: #FF1493;
  border-color: #FF1493;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.enter__check input[type="checkbox"]:checked ~ .checkmark:after {
  display: block;
}

.enter__check .checkmark:after {
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.enter__second-step {
  font-family: 'Roboto-Medium';
  color: #fff;
}

.enter__choice {
  font-size: 15px;
  line-height: 18px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.enter__choice-icon {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #929599;
  transition: all .3s;
}

.choice-active .enter__choice-icon {
  border: 2px solid #FF1493;
  background-color: transparent;
}

.choice-active .enter__choice-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: #FF1493;
  border-radius: 50%;
}

.enter__code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 24px 0 36px 0;
}

.enter__code input {
  width: 48px;
  height: 48px;
  padding: 14px;
  font-size: 24px;
  color: #fff;
  background-color: #2E2F31;
  border: none;
  border-radius: 4px;
}

.enter__second-step {
  display: none;
}

.enter__code-step {
  display: none;
}

.enter__code-timer {
  display: block;
  font-family: 'Roboto-Medium';
  font-size: 15px;
  line-height: 22px;
  width: 100%;
  text-align: center;
  transition: all .5s;
}

.enter__code-seconds {
  font-family: 'Roboto-Regular';
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  color: #fff;
}

.enter__code-again {
  display: none;
  font-family: 'Roboto-Regular';
  font-size: 15px;
  line-height: 22px;
  width: 100%;
  text-align: center;
  color: #FF1493;
  cursor: pointer;
  transition: all .5s;
}

.enter__code-step {
  display: none;
}

.enter__new-password {
  display: none;
}
