.code-inputs {
    margin-top: 10px;
    display: flex;
    gap: 8px;
}

.code-inputs input {
    width: 48px;
    height: 56px;
    text-align: center;
    font-size: 22px;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    outline: none;
}

.code-inputs input.input-invalid {
    border-color: #ED1C24 !important;
    box-shadow: 0 0 4px rgba(229, 57, 53, 0.5);
}

.code-inputs input:focus {
    border-color: #42a5f5;
}

.code-error {
    margin-top: 12px;
    color: #ED1C24;
    font-size: 14px;
}

.code-resend {
    margin-top: 16px;
    font-size: 14px;
}

.resend-btn[disabled] {
    opacity: 0.5;
    pointer-events: none;
}


.tabs-container {
    font-family: sans-serif;
    max-width: 600px;
}

.tabs-nav {
    display: flex;
    position: relative;
    gap: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.tab-btn {
    padding: 12px 5px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    color: #00ACEC;
    transition: color 0.3s;
}

.tab-btn.active {

    font-weight: bold;
}

.underline {
    position: absolute;
    bottom: 0;
    height: 3px;
    background-color: #00ACEC;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tabs-content {
    position: relative;
}

.tab-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.3s ease;
}

.tab-pane.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: relative;
}

.resend-btn {
    color: #00ACEC;
}


.address-button {
    width: 100%;
    height: 85px;

    display: flex;
    align-items: stretch;

    padding: 0;
    cursor: pointer;
    overflow: hidden;

    border: 1px solid #E4E9EF;
    border-radius: 6px;
    background: #FFF;
}

.address-content {
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 0 20px;
    text-align: left;
}

.address-index {
    color: #000;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 17px;

}

.address-text {
    color: #717A82;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 17px;

}

.address-submit {
    width: 86px;
    height: 85px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #20B1ED;
    border-radius: 0 6px 6px 0;
}

.address-submit-text {
    display: none;
}

.address-arrow {
    width: 33px;
    height: 29px;

    fill: #FFF;
    stroke: #E4E9EF;
    stroke-width: 2.826px;
}


@media (max-width: 768px) {
    .address-button {
        flex-direction: column;
        min-height: 135px;
    }

    .address-content {
        flex: 1; /* 67% */
    }

    .address-submit {
        flex: 0 0 33%;
        width: 100%;
        border-radius: 0 0 6px 6px;
    }

    .address-arrow {
        display: none;
    }

    .address-submit-text {
        display: block;
        color: #fff;
        font-family: "Gotham Pro", sans-serif;
        font-size: 14px;
        font-weight: 700;
        line-height: 17px;
    }
}


.password-help-container {
    position: relative;
    display: inline-block;
    color: #0099ff;
    cursor: pointer;
    font-size: 16px;
    padding-right: 20px;
}

.help-icon {
    position: absolute;
    right: 0;
    top: 0;
    width: 13.5px;
    height: 13.5px;
    border: none;
}

.tooltip-content {
    visibility: hidden;
    opacity: 0;

    width: 435.4px;
    min-height: 109.4px;
    background: #FFF;
    border-radius: 14px;
    box-shadow: 0 5px 20px 1px rgba(0, 0, 0, 0.05);

    color: #464646;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 17px;

    padding: 15px;

    position: absolute;
    z-index: 10;

    bottom: 130%;
    left: 0;

    transition: opacity 0.3s, visibility 0.3s;
}

.password-help-container:hover .tooltip-content {
    visibility: visible;
    opacity: 1;
}

