.auth-page {
    padding-top: 128px;
    padding-bottom: 64px;
    width: 100%;
    background-color: #f4f4f4;
}
.auth-container {
    padding: 32px;

    width: 538px;
    border-radius: 16px;
    background-color: #fff;
    filter: drop-shadow(0px 5px 5px #00000010);
}
.auth-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0px;
}
.auth-title {
    font-size: 20px;
    font-weight: 600;
}
.a-title-icon {
    width: 32px;
    height: 32px;
    margin-right: 16px;
}
.auth-check {
    font-size: 16px;
    font-weight: 500;
}
.a-link {
    text-decoration: underline !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    cursor: pointer;
}
.auth-form {
    margin-top: 24px;
    width: 100%;
}
.a-form-elements label {
    margin-bottom: 12px !important;
    color: #a5a5a5;
    text-align: left;
    text-indent: 0px;
    color: #a5a5a5;
}
.a-form-input {
    margin-bottom: 24px;
    width: 100%;
    height: 48px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    text-indent: 12px;
}
.p-number-inputs,
.auth-button-cover {
    width: 100%;
}
.a-form-input-c-code {
    width: 84px;
    margin-right: 12px;
}
.a-form-input-icon {
    position: absolute;
    margin-left: 42px;
    margin-bottom: 22px;
    font-size: 16px;
    cursor: pointer;
}
.a-btn-register {
    margin-bottom: 4px;
    width: 100%;
    height: 48px;
    color: #fff;
    border-radius: 12px;
}
.auth-privacy {
    margin-left: 8px;
    margin-bottom: 24px;
    gap: 24px;
}
.a-p-strong {
    cursor: pointer;
}
.a-form-password {
    width: 100%;
}
.rl-form_label {
    color: #a5a5a5 !important;
}
.rl-form_label:hover {
    color: #a5a5a5 !important;
}
.a-form-input-eye {
    width: 16px;
    height: 16px;
    position: absolute;
    margin-top: 16px;
    margin-left: -32px;
    color: #a5a5a5;
}
.a-forget-p {
    cursor: pointer;
}
.phone-code-flag-icon {
    width: 20px;
    height: 20px;
}
.auth__checkbox-text {
    font-size: 14px !important;
}

@media (max-width: 480px) {
    .auth-container {
        padding: 16px;
        width: 100%;
    }
    .auth-header {
        flex-direction: column;
        align-items: start;
        width: 100%;
        gap: 24px;
    }
    .auth-privacy {
        margin-left: 0px;
    }
    .auth-page {
        padding-top: 98px;
    }

    .a-btn-register {
        margin-bottom: 4px;
        width: 100%;
        height: 42px;
        color: #fff;
        border-radius: 12px;
    }
}

/* The container must be positioned relative: */
.custom-select {
    margin-right: 12px;

    position: relative;

    text-indent: 4px !important;
}

.custom-select select {
    display: none; /*hide original SELECT element: */
}

.select-selected {
    width: 100%;
    height: 48px;
    border-radius: 16px;
    padding: 8px !important;
    padding-top: 14px !important;
    font-size: 12px;
    background-color: transparent;
}

/* Style the arrow inside the select element: */
.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 0px solid transparent;
    border-color: transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
    border-color: transparent;
    top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,
.select-selected {
    color: #a5a5a5;
    cursor: pointer;
    width: 100%;
    height: 48px;
    border-radius: 12px;
    padding: 8px !important;
    padding-top: 14px !important;
    font-size: 12px;
    text-align: left;
}

/* Style items (options): */
.select-items {
    /* width: 256px; */
    margin-top: 8px;
    position: absolute;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;

    overflow: auto;
    top: 100%;
    height: 200px;
    left: 0;
    right: 0;
    z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
