.auth_container {
    display: flex;
    align-items: start;
    justify-content: end;
    background-color: transparent;
    margin-right: 20px;
    margin-left: 20px;
}

.auth_wrapper {
    min-height: 100%;
    width: 100%;
    background-color: rgb(70, 70, 70);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bg-200.webp');
    background-size: cover;
    background-attachment: fixed; /* viewport-locked: immune to any content/sidebar growth */
    overflow-y: auto;
}

@media (max-width: 480px) {
    .content_wrapper {
        width: 100%;
        margin: auto;
        background: transparent;
        padding: 0 8px;
    }
    .my_content {
        padding: 20px 16px;
    }
    .rb-grid-row {
        grid-template-columns: 1fr !important;
    }
}

@media (min-width: 480px) and (max-width: 768px) {
    .content_wrapper {
        width: 100%;
        max-width: 520px;
        margin: auto;
        background: transparent;
        padding: 0 12px;
    }
}

@media (min-width: 768px) {
    .content_wrapper {
        width: 520px;
        background: transparent;
        margin-right: 30px;
    }
}

.rb-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 12px;
}

.my_content {
    width: 100%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(13px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 30px 35px;
}

.my_content h2 {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}
.my_content .input-box {
    position: relative;
    width: 100%;
    height: 55px;
    margin: 5px 0;
}
.my_content .input-box input {
    background: transparent;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 20px 45px 20px 20px;
    font-size: 16px;
}
input::placeholder {
    color: #fff;
    font-size: 16px;
}
.input-box .show_hide_icon_pass {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #fff;
}
.my_content .remember {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.remember label input {
    accent-color: #fff;
    margin-right: 4px;
}
.remember a {
    color: #fff;
    text-decoration: none;
}
.remember a:hover {
    text-decoration: underline;
}
.btn_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}

.btnn {
    background: #fff;
    color: #0a2862;
    width: 100%;
    border-radius: 30px;
    font-size: 16px;
    height: 45px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    margin: 30px auto;
    margin-bottom: 30px;
    margin-top: 16px;
}

.success-alert {
    background: rgba(52, 199, 89, 0.2);
    border: 1px solid rgba(52, 199, 89, 0.6);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 14px;
    color: #f8fdf9;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.success-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #20b026;
    color: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}
.auth_wrapper a .lang_btn {
    background: #e1e1e1;
    color: #0a2862;
    width: 50px;
    border-radius: 20px;
    font-size: 8px;
    height: 25px;
    font-weight: 200;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    margin-bottom: 30px;
    margin-top: 16px;
}

.button {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}
.button a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}
.button a i {
    font-size: 20px;
    margin-right: 8px;
}
.button a:hover {
    opacity: 0.8;
}
input[type='checkbox'] {
    display: inline-block;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

input::-ms-reveal,
input::-ms-clear {
    display: none;
}

input::-webkit-credentials-auto-fill-button,
input::-webkit-clear-button,
input::-webkit-inner-spin-button,
input::-webkit-contacts-auto-fill-button {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none;
    height: 0;
    width: 0;
    margin: 0;
    padding: 0;
}

.auth_footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 50px;
    margin-left: 50px;
}

.auth_footer h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.hf-glass {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    margin-bottom: 16px;
    padding: auto 30pc;
    overflow: hidden;
}