:root {
  --container-padding: 0 20px;
  --container-padding-carousel: 16px 20px;
  --color-theme: #efb156;
}

body {
    background-color: #ffffff;
}

main {
  margin-top: 30px;
  padding-bottom: 130px;
}

.container {
  padding: var(--container-padding);
  margin: auto;
}

.frame-box {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-width: 768px;
  border: 1px solid rgba(0, 0, 0, 0.1843137255);
  border-top: none;
  border-bottom: none;
}

.first-message h1 {
  font-size: 18px;
  font-weight: 600;
  margin: auto;
  text-align: center;
}

.first-message h1 span {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-theme);
}

.first-message p {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  color: #626262;
  margin-top: 12px;
  line-height: 24px;
}

.frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: all 250ms;
}

#frame-1 .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding-bottom: 32px;
}

#frame-1 .header-img {
    height: 55vh;
    margin: auto;
}

.first-message {
  margin-top: 16px;
}

.title-and-text p {
  font-size: 13px;
  font-weight: 500;
  color: #626262;
  text-align: center;
  line-height: 24px;
  margin-top: 16px;
}

/* #region components */
.textbox {
    padding: 10px;
    border: 2px solid #dfdfdf;
    border-radius: 12px;
    width: 100%;
    direction: rtl;
}

.textbox::placeholder {
  color: #d9d9d9;
}

.btn {
  border: none;
  outline: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 18px;
  user-select: none;
  cursor: pointer;
  /* editable properties */
  color: #908f94;
  background-color: #f1f1f1;
}

.btn.btn-theme {
  color: #fff;
  background-color: var(--color-theme);
}
.input-control > label {
  font-size: 12px;
  font-weight: 700;
  color: #606060;
  margin-bottom: 10px;
  display: inline-block;
}
.captcha-code {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
}
.captcha-code input {
    border-radius: 0 12px 12px 0;
    padding: 8px;
    border-left: 0;
    height: 45px;
    text-align: center;
    font-weight: 600;
    color: #494545;
}
.captcha-code img {
    height: 45px;
}

/* #endregion */
/* #region frame-2 */
#frame-2 {
    padding-top: 5vh;
}

#frame-2 .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 32px;
}

#frame-2 .title-and-text {
  margin-top: 12px;
}

    #frame-2 img.header-img {
        transform: scale(1.2);
        max-height: 300px;
        margin: auto;
        height: 35vh;
    }

#frame-2 .title-and-text p {
  padding: 0 12px;
}

    #frame-2 form {
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        row-gap: 30px;
        max-width: 400px;
        margin: auto;
    }

/* #endregion */
.title-and-text h2 {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

/* #region frame-3 */
#frame-3 .html-image-secret {
  width: 125px;
  height: 125px;
  outline: 1px dashed #d6dadb;
  border-radius: 9999px;
  background: #fff5e5;
  outline-offset: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px auto;
}

#frame-3 .html-image-secret .inner-shape {
  background: var(--color-theme);
  border-radius: 9999px;
  padding: 24px;
}

#frame-3 {
  padding-top: 80px;
  padding-bottom: 40px;
}

#frame-3 .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#frame-3 .title-and-text {
  margin-top: 42px;
}

/* #endregion */
.timer {
  color: var(--color-theme);
  font-weight: 700;
}

.authcode {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 45px;
  row-gap: 18px;
  margin: 45px auto 0px;
  width: fit-content;
}

.authcode-box {
  display: flex;
  justify-content: center;
  column-gap: 6px;
  direction: ltr;
}

input.auth-number-input {
  --input-color: #efb156;
  width: 50px;
  height: 65px;
  background-color: #f9f9f9;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--input-color);
}

input.auth-number-input.fill,
input.auth-number-input:focus {
  border-color: var(--input-color);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

input.auth-number-input.active {
  border-color: var(--color-theme);
}

.operation-link {
  font-size: 11px;
  font-weight: 700;
  color: #606060;
}

.button-bar {
  display: flex;
  column-gap: 20px;
}

.button-bar button {
  width: 100%;
}

button, input {
    transition: all 250ms;
}

.auth-number-input:disabled {
    border-color: #cbcbcb !important;
    background-color: #f1f1f1;
    color: #51514d;
}

#confrim:disabled {
    background-color: #3d3d3a1a;
    color: #616161;
}

#confrim:disabled .loader
{
    border-color: #5150502b;
    border-top-color: #838383;
    animation: RotateAnime 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
    margin: auto;
}




.capchaBox img{
    height: 45px;
}

input, select, textarea {
    background-color: #ffffff;
}
.btn {
    justify-content: center;
}

.capchaBox img {
    border-radius: 12px 0px 0px 12px;
}
.capchaBox input {
    border-radius: 12px;
}