* {
    outline: none;
    box-sizing: border-box;
}

html {
    background-color: rgb(24, 24, 24);
}

.form__wrap {
    width: 100%;
    min-width: 320px;
    max-width: 560px;
    padding: 40px;
    box-sizing: border-box;
    background-color: rgb(24, 24, 24);
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 3px 6px -4px, rgba(0, 0, 0, 0.08) 0px 6px 16px 0px, rgba(0, 0, 0, 0.05) 0px 9px 28px 8px;
    position: relative;
    z-index: 10;
    margin: auto;
    overflow: hidden;
    margin-top: 50px;
}

.form {
    width: 100%;
    box-sizing: border-box;
}

.clipboard {
    margin: 0px 0px 40px;
}

.clipboard__text {
    font-family: Giorgio-Bold, sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
    color: rgb(255, 255, 255);
    letter-spacing: 0px;
    text-transform: uppercase;
    text-align: center;

    transition: color 0.25s ease-in-out;
}

.form__block {
    display: block;
    width: 100%;
    margin: 20px 0px 0px;
    position: relative;
    box-sizing: border-box;
    font-family: Lato, Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-weight: 400;
    /* font-feature-settings: "tnum", "tnum"; */
    -webkit-font-smoothing: antialiased;
    transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    /* -webkit-tap-highlight-color: transparent; */
    /* color: rgb(255, 255, 255) !important; */
}

.form__input {
    font-family: Lato, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    width: 100%;
    height: 80px;
    padding: 30px 12px 12px 100px;
    position: relative;
    text-transform: uppercase;
    box-sizing: border-box;
    outline: none;
    z-index: 1;
    background: rgb(33, 33, 33);
    color: rgb(204, 204, 204);
    caret-color: rgb(255, 255, 255);
    border: 2px solid rgb(115, 115, 115);
    border-radius: 12px;
    transition: border 0.25s ease-in-out;

    overflow: clip !important;
}

.input__label {
    position: absolute;
    left: 100px;
    z-index: 10;
    pointer-events: none;
    box-sizing: border-box;
    letter-spacing: 0.48px;
    color: rgb(204, 204, 204);
    transition: top 0.25s ease-in-out;
    font-family: Lato, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    top: 28px;
}

.form__input:focus~.input__label {
    font-family: Lato, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    top: 17px;
}

.input__span {
    display: flex;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    cursor: default;
    pointer-events: none;
    width: 56px;
    height: 56px;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.input__span::after {
    content: "";
    display: block;
    position: absolute;
    right: -7px;
    top: 0px;
    width: 1.5px;
    height: 50px;
    border-radius: 1px;
    background: rgb(115, 115, 115);
}

.second-input__block {}

.form__link {
    margin: 20px 0px 0px;
    display: inline-block;
    font-family: Lato, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    cursor: pointer;
}

.checkbox__block {
    margin: 32px 0px;
}

.checkbox__label {
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.checkbox {
    display: none;
}

.checkbox:checked+.checkbox__span1 {
    background-color: rgb(248, 232, 0);
    border-color: rgb(248, 232, 0);
}

.checkbox:checked+.checkbox__span1::before {
    opacity: 1;
}

.checkbox__span1 {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: transparent;
    border-color: rgb(115, 115, 115);
    border-radius: 4px;
    border-width: 1.5px;
    border-style: solid;
    box-sizing: border-box;
    transition: background-color 0.25s ease-in-out, border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}

.checkbox__span1::before {
    display: block;
    content: "";
    width: 8px;
    height: 16px;
    position: absolute;
    top: 2px;
    border-width: 0px 4px 4px 0px;
    border-right-style: solid;
    border-bottom-style: solid;
    border-right-color: rgb(1, 1, 1);
    border-bottom-color: rgb(1, 1, 1);
    border-image: initial;
    border-top-style: initial;
    border-top-color: initial;
    border-left-style: initial;
    border-left-color: initial;
    transform: rotate(45deg) scale(0.75);
    transition: opacity 0.25s ease-in-out;
    opacity: 0;
    z-index: 1;
}

.checkbox__span2 {
    padding: 0px 0px 0px 56px;
}

.checkbox__span-text {
    font-size: 18px;
    font-family: Lato, sans-serif;
    font-weight: 400;
    line-height: 24px;
    color: rgb(115, 115, 115);
    text-align: left;
    white-space: normal;

    /* letter-spacing: 0.25px; */
    margin: 0px;
    transition: color 0.25s ease-in-out;
}

.checkbox__link {
    display: inline;
    font-family: Lato, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    cursor: pointer;
}

.checkbox__link:hover {
    color: rgb(248, 232, 0);
    transition: color 0.1s ease-in-out;
}

.form__button-block {
    margin: 40px 0px 0px;
}

.button:disabled {
    color: rgb(204, 204, 204);
    background: rgb(115, 115, 115);
    cursor: not-allowed;
}

.button {
    width: 100%;
    color: rgb(1, 1, 1);
    background: rgb(248, 232, 0);
    border: none;
    font-family: Lato, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    display: block;
    width: 100%;
    height: 80px;
    padding: 0px 20px;
    border-radius: 12px;
    transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, border-color 0.25s ease-in-out;
    cursor: pointer;
}

.form__span-block {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    height: 24px;
    margin: 12px 0px;
    position: relative;
}

.form__span-block::before {
    left: 0px;
    display: block;
    content: "";
    width: 44.6%;
    height: 1px;
    position: absolute;
    background-color: rgb(115, 115, 115);
}

.form__span-block::after {
    right: 0px;
    display: block;
    content: "";
    width: 44.6%;
    height: 1px;
    position: absolute;
    background-color: rgb(115, 115, 115);
}

.form__span {
    color: rgb(157, 157, 157);
    font-family: Lato, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    display: block;
    width: 52px;
    text-align: center;
}

.form__grid-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.grid__button1 {
    font-family: Lato, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    height: 56px;
    padding: 0px 10px;
    color: rgb(255, 255, 255);
    background: transparent;
    border: 1px solid rgb(118, 118, 118);
    display: block;
    width: 100%;
    border-radius: 12px;
    transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, border-color 0.25s ease-in-out;
    cursor: pointer;
}

.grid__button2 {
    font-family: Lato, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    height: 56px;
    padding: 0px 10px;
    color: rgb(255, 255, 255);
    background: rgb(51, 51, 51);
    border: 1px solid rgb(51, 51, 51);
    cursor: pointer;
    animation: auto ease 0s 1 normal none running none;
    display: block;
    width: 100%;
    border-radius: 12px;
    transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out, border-color 0.25s ease-in-out;
}

.grid__block {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 32px;
    text-align: center;
}

.grid__svg-block {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    flex-direction: row-reverse;
    height: 32px;
}

.grid__span {
    margin: 0px 0px 0px 8px;
}

.form__desc-block {
    font-family: Lato, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: rgb(115, 115, 115);
    text-align: center;
    margin: 20px 0px 0px;

    letter-spacing: 0.25px;
    transition: color 0.25s ease-in-out;
}

.desc__link {
    display: inline-block;
    font-family: Lato, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    cursor: pointer;
}

.desc__link:hover {
    color: rgb(248, 232, 0);
    transition: color 0.1s ease-in-out;
}