.sign-layout {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
    min-height: 100dvh;
    background: var(--bg-primary);
    background-image: radial-gradient(ellipse at top, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, .01));
}


@media (min-width: 768px) {
    .sign-layout {
        background: var(--fg-ligth);
    }
}



.sign-layout-wrap {
    display: flex;
    flex-direction: column;
    width: 400px;
    aspect-ratio: 1/1.3;
    padding: 1rem;
    margin: 1rem auto;
    border-radius: 15px;
    color: var(--fg-ligth);
}



.sign-layout-wrap-second {
    display: flex;
    flex-direction: column;
    width: 400px;
    aspect-ratio: 1/1.3;
    padding: 1rem;
    margin: 1rem auto;
    border-radius: 15px;
    color: var(--fg-ligth);
}


@media (min-width: 768px) {

    .sign-layout-wrap,
    .sign-layout-wrap-second {
        background-color: var(--bg-primary);
        background-image: radial-gradient(ellipse at top, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, .01));
        box-shadow: var(--shadow);
    }
}


.sign-layout-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 30%;
}

.sign-layout-header-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    cursor: pointer;

    &>span {
        font-weight: 600;
        font-size: 2rem;
    }
}


.sign-layout-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.sign-title {
    margin: auto;
    padding: 1rem;
}

.input-wrap {
    display: flex;
    flex-direction: column;
    margin: auto 0;
    padding: 1rem;
    gap: 2rem;


    &>input {
        width: 100%;
        margin: auto;
    }
}

.sign-nav {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: auto;
    margin-bottom: 1rem;
}


.input-text {
    text-align: center;
}


.input-text.otp {
    letter-spacing: 3px;
}

.sign-link-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
}

.sign-link {
    text-align: right;
    padding-right: 1.5rem;
    text-decoration: underline;
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
}


.checkbox {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background-color: whitesmoke;
    margin: auto;
    border-radius: 3px;
    width: 25px;
    height: 25px;
    aspect-ratio: 1/1;
    cursor: pointer;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, .2);

    &>div {
        display: none;
        width: 10px;
        height: 15px;
        margin: auto;
        border-bottom: 5px solid lime;
        border-right: 5px solid lime;
        transform: rotate(45deg);
    }
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"]:checked+.checkbox>div {
    display: block !important;
}

.terms-and-conditions-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .5rem;
    text-align: center;

    &>a {
        font-size: 12px;
        max-width: 180px;
        color: gold;
        text-decoration: underline;
        margin: auto;
    }
}