* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Helvetica;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    height: 100vh;
    color: #0F0F10;
    align-items: center;
    justify-content: center;
}

.sign-in {
    width: 620px;
    height: 600px;
    border: none;
    padding: 0px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.onboarding {
    justify-content: space-around;
}

.sign-in>.sign-in-header {
    display: flex;
    flex-direction: column;
}

.sign-in>.sign-in-header>h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    color: #0F0F10;
}

.sign-in>.sign-in-header>span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #555559;
}

.sign-in>.sign-in-header>span>a {
    color: #EF833D;
    text-decoration: underline 1px #EF833D;
}

.sign-in-body {
    width: 100%;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.sign-in-div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.sign-in-div>div {
    display: flex;
}

.sign-in-div>a {
    color: #EF833D;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: underline 1px #EF833D;
}

.sign-in-div>div>button {
    background-color: #ffffff;
    border: 1px solid #E8E8E9;
    width: 129px;
    flex-shrink: 0;
    border-radius: 12px 0px 0px 12px;
    border-right: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.sign-in-div>div>button>div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sign-in-div>div>button>div>span {
    font-size: 16px;
    font-weight: 400;
    color: #0F0F10;
}

.sign-in-div>div>button>div>img {
    width: 24px;
}

.sign-in-div>div>button>i {
    font-size: 10px;
}

.sign-in-div>ul {
    width: 100%;
    color: #555559;
    list-style-position: inside;
    margin-left: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    list-style: none;
}

.sign-in-div>button {
    position: absolute;
    top: 44px;
    right: 15px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.sign-in-div>ul>li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sign-in-div>ul>li>i {
    font-size: 10px;
}

.sign-in-div>.password-show-hide {
    background-color: transparent;
    width: fit-content;
    height: fit-content;
    position: absolute;
    top: 43px;
    right: 16px;
    border: none;
    outline: none;
    cursor: pointer;
}

.sign-in-div>.password-show-hide>i {
    font-size: 18px;
    color: #0F0F10;
}

.sign-in-div>div>input {
    width: 100%;
    padding: 12px;
    border: 1px solid #E8E8E9;
    border-radius: 0px 12px 12px 0px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    outline: none;
}

.sign-in-div>input {
    width: 100%;
    padding: 12px;
    border: 1px solid #E8E8E9;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    outline: none;
}

.sign-in-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.sign-in-footer>span {
    margin-top: 32px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #555559;
}

.sign-in-footer>span>a {
    color: #0F0F10;
    text-decoration: underline 1px #0F0F10;
}

.sign-in-footer>button {
    width: 100%;
    padding: 12px 16px;
    background-color: #EF833D;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    border: none;
    cursor: pointer;
}

.sign-in-footer>div {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 12px;
}

.sign-in-footer>div>span:nth-child(1) {
    width: 100%;
    height: 1px;
    background-color: #E8E8E9;
}

.sign-in-footer>div>span:nth-child(3) {
    width: 100%;
    height: 1px;
    background-color: #E8E8E9;
}

.sign-in-footer>ul {
    display: flex;
    gap: 16px;
    align-items: center;
    list-style: none;
}

.sign-in-footer>ul>li {
    width: 100%;
    position: relative;
    background-color: #F5F5F5;
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
}


.forget-password-box {
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background: #13131480;
    z-index: 99;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.forget-password-box>.forget-password-box-in {
    width: 540px;
    position: relative;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px 0px;
    cursor: default;
}

.forget-password-box>.forget-password-box-in>.forget-password-box-in-header {
    padding: 0px 80px 8px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.forget-password-box>.forget-password-box-in>.forget-password-box-in-header>h1 {
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 36px;
}

.forget-password-box>.forget-password-box-in>.forget-password-box-in-header>button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.forget-password-box>.forget-password-box-in>.forget-password-box-in-header>button>i {
    font-size: 18px;
}

.forget-password-box>.forget-password-box-in>.forget-password-box-in-body {
    padding: 16px 80px 16px 80px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.forget-password-box>.forget-password-box-in>.forget-password-box-in-body>p {
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 24px;
    color: #555559;
}

.forget-password-box>.forget-password-box-in>.forget-password-box-in-body>div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.forget-password-box>.forget-password-box-in>.forget-password-box-in-body>div>button {
    width: 100%;
    padding: 12px 16px;
    background-color: #F5F5F5;
    border-radius: 12px;
    border: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.forget-password-box>.forget-password-box-in>.forget-password-box-in-body>form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.forget-password-box>.forget-password-box-in>.forget-password-box-in-body>form>div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.forget-password-box>.forget-password-box-in>.forget-password-box-in-body>form>div>label {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #0F0F10;
}

.forget-password-box>.forget-password-box-in>.forget-password-box-in-body>form>div>input {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #0F0F10;
    border: 1px solid #E8E8E9;
    padding: 12px 16px;
    border-radius: 12px;
    background-color: #ffffff;
    outline: none;
}

.forget-password-box>.forget-password-box-in>.forget-password-box-in-body>form>div>input::placeholder {
    color: #555559;
}

.forget-password-box>.forget-password-box-in>.forget-password-box-in-footer {
    width: 100%;
    padding: 16px 80px 0px 80px;
    border-top: 1px solid #E8E8E9;
}

.forget-password-box>.forget-password-box-in>.forget-password-box-in-footer>button {
    width: 100%;
    background-color: #EF833D;
    padding: 12px 16px;
    border-radius: 12px;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
}




.gender-box {
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background: #13131480;
    z-index: 99;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gender-box>.gender-box-in {
    width: 540px;
    position: relative;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px 0px;
    cursor: default;
}

.gender-box>.gender-box-in>.gender-box-in-header {
    padding: 0px 80px 8px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gender-box>.gender-box-in>.gender-box-in-header>h1 {
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 36px;
}

.gender-box>.gender-box-in>.gender-box-in-header>button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.gender-box>.gender-box-in>.gender-box-in-header>button>i {
    font-size: 18px;
}

.gender-box>.gender-box-in>.gender-box-in-body {
    padding: 16px 80px 16px 80px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gender-box>.gender-box-in>.gender-box-in-body>p {
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 24px;
    color: #555559;
}

.gender-box>.gender-box-in>.gender-box-in-body>div {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gender-box>.gender-box-in>.gender-box-in-body>div>button {
    width: 100%;
    padding: 12px 16px;
    background-color: #F5F5F5;
    border-radius: 12px;
    border: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.gender-box>.gender-box-in>.gender-box-in-body>form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gender-box>.gender-box-in>.gender-box-in-body>form>div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gender-box>.gender-box-in>.gender-box-in-body>form>div>label {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #0F0F10;
}

.gender-box>.gender-box-in>.gender-box-in-body>form>div>input {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #0F0F10;
    border: 1px solid #E8E8E9;
    padding: 12px 16px;
    border-radius: 12px;
    background-color: #ffffff;
    outline: none;
}

.gender-box>.gender-box-in>.gender-box-in-body>form>div>input::placeholder {
    color: #555559;
}

.gender-box>.gender-box-in>.gender-box-in-footer {
    width: 100%;
    padding: 16px 80px 0px 80px;
    border-top: 1px solid #E8E8E9;
}

.gender-box>.gender-box-in>.gender-box-in-footer>button {
    width: 100%;
    background-color: #EF833D;
    padding: 12px 16px;
    border-radius: 12px;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
}

.gender-box>.gender-box-in>.gender-box-in-body>ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-wrap: wrap;
    list-style: none;
}

.gender-box>.gender-box-in>.gender-box-in-body>ul>li>label {
    padding: 8px 0px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gender-box>.gender-box-in>.gender-box-in-body>ul>li>label>p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #0F0F10;
}

.gender-box>.gender-box-in>.gender-box-in-body>ul>li>.radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio input {
    position: absolute;
    opacity: 0;
}

.radio span {
    width: 20px;
    height: 20px;
    border: 2px solid #A4A4A8;
    border-radius: 50%;
    position: relative;
}

.radio span::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #f28c38;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.2s;
}

.radio input:checked+span {
    border-color: #f28c38;
}

.radio input:checked+span::after {
    transform: translate(-50%, -50%) scale(1);
}

.radio input:checked~p {
    font-weight: bold;
}



.hidden {
    display: none !important;
    overflow: hidden;
}


/* RESPONSIVE */
@media screen and (max-width: 744px) {
    .sign-in {
        width: 100%;
    }

    .forget-password-box>.forget-password-box-in,
    .gender-box>.gender-box-in {
        position: absolute;
        bottom: 0px;
        width: 100%;
        border-radius: 16px 16px 0px 0px;
    }

    .forget-password-box>.forget-password-box-in>.forget-password-box-in-header,
    .gender-box>.gender-box-in>.gender-box-in-header {
        padding: 0px 16px 16px 16px;
        border-bottom: 1px solid #E8E8E9;
    }

    .forget-password-box>.forget-password-box-in>.forget-password-box-in-body,
    .gender-box>.gender-box-in>.gender-box-in-body {
        padding: 16px;
    }

    .forget-password-box>.forget-password-box-in>.forget-password-box-in-footer,
    .gender-box>.gender-box-in>.gender-box-in-footer {
        padding: 16px;
    }
}