@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    margin: 0px;
    padding: 0px;
    font-family: "Poppins", sans-serif;
}

body {
    background: #18191a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

input {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 16px;
    border-radius: 8px;
    border: 1px solid #444;
    background-color: #2c2c2c;
    color: #fff;
    font-size: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus {
    box-shadow: 0 0 12px 0px rgba(255, 100, 0, 0.5);
    outline: none;
}

input::placeholder {
    color: #aaa;
}

.enviarCodigoParaTelefoneBtn {
    width: 100%;
    background-color: #000;
    color: #ff6400;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    border: 0px solid;
    transition: all 0.3s;
    border-radius: 6px;

    margin-top: 0px;
}

.enviarCodigoParaTelefoneBtn:hover {
    background-color: #ff6400;
    color: #000;
    cursor: pointer;
}

.enviarCodigoParaTelefoneBtn:active {
    transform: scale(0.98);
}

.box {
    width: 824px;
    display: flex;
    flex-direction: row;
    background: #3a3b3c;
    gap: 24px;
    padding: 16px 64px;
    height: 600px;

    justify-content: space-between;
    align-items: center;

    position: relative;
    overflow: hidden;

    border-radius: 4px
}

.box1 {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 8px;
}

h1 {
    color: white;
    text-align: center;
    font-size: 28px;
    font-weight: 600;

    cursor: default;
}

h2 {
    color: white;
    text-align: start;
    font-size: 16px;
    font-weight: 400;

}

.box2 {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 450px;
    gap: 24px
}


.box3 {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 16px;
    background: #ff6400;
    transition: width 0.4s ease;
    cursor: pointer;
    z-index: 10;

    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.box3 .box3-content {
    width: 80%;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: opacity 0.4s ease 0.2s;
    transform: translateX(20px);
    white-space: nowrap;
}

.box3.expandido {
    width: 50%;
    background: #ff6400;
}

.box3.expandido .box3-content {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}


.label-input {
    display: flex;
    flex-direction: column;
    text-align: start;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    width: 100%;
}

.listadedigitos {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    margin-top: 24px;
}

.codigoverificacao {
    width: 15%;
    text-align: center;
}

.verificarCodigoBtn {
    width: 100%;
    background-color: #000;
    color: #ff6400;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    border: 0px solid;
    transition: all 0.3s;
    border-radius: 6px;

    margin-top: 16px;
}

.verificarCodigoBtn:hover {
    background-color: #ff6400;
    color: #000;
    cursor: pointer;
}

.verificarCodigoBtn:active {
    transform: scale(0.98);
}

.box4 {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 16px;
    background: #3a3b3c;
    transition: width 0.4s ease;
    cursor: pointer;
    z-index: 10;

    overflow: hidden;
    display: flex;

}

.box4 .box4-content {
    width: 100%;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: opacity 0.4s ease 0.2s;
    white-space: nowrap;
    padding: 0px 64px;
}

.box4.expandido {
    width: 50%;
    background: #3a3b3c;
}

.box4.expandido .box4-content {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.definirNovaSenha {
    width: 100%;
    background-color: #000;
    color: #ff6400;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    border: 0px solid;
    transition: all 0.3s;
    border-radius: 6px;

    margin-top: 0px;
}

.definirNovaSenha:hover {
    background-color: #ff6400;
    color: #000;
    cursor: pointer;
}

.definirNovaSenha:active {
    transform: scale(0.98);
}

.mobile-logo {
    display: none;
}

@media (max-width: 767px) {
    .mobile-logo {
        display: block;
    }

    h1 {
        font-size: 20px;
        margin: 0px !important;
    }

    h2 {
        font-size: 16px;
        text-align: center
    }

    .box {
        width: 80%;
        flex-direction: column;
        height: 80%;
        padding: 16px 24px;
        gap: 16px;
        justify-content: center;
    }

    .box1,
    .box2 {
        width: 100%;
        align-items: center;
        justify-content: center;
        gap: 8px;
        height: auto;
    }

    .box3 {
        position: absolute;
        width: 100%;
        height: 12px;
        background-color: #ff6400;
        bottom: 0px;
        display: flex;
        flex-direction: column;
        gap: 18px;
        align-items: center;
        justify-content: center;
        transition: height 0.4s ease;

    }

    .box3 .box3-content {
        width: 90%;
        background-color: #ff6400;
        flex-direction: column;
        gap: 18px;
        align-items: center;
        justify-content: center;

    }

    .box3.expandido {
        height: 100%;
        width: 100%;
        opacity: 1;
    }

    .box3.expandido .box3-content {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .listadedigitos {
        width: 100%;
        justify-content: space-between;
    }

    .codigoverificacao {
        width: 15%;
        padding: 4px;
        height: 48px;
    }

    .box4 {
        position: absolute;
        width: 100%;
        height: 12px;
        top: auto;
        display: flex;
        flex-direction: column;
        gap: 18px;
        align-items: center;
        justify-content: center;
        bottom: 0px;
        transition: height 0.4s ease;
    }

    .box4 .box4-content {
        width: 90%;
        flex-direction: column;
        gap: 18px;
        align-items: center;
        justify-content: center;

    }

    .box4.expandido {
        height: 100%;
        width: 100%;
        opacity: 1;
    }

    .box4.expandido .box4-content {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }


}