:root {
    --rg-main-text-color: #ffffff;
    --rg-seccound-text-color: #000000;
    --rg-web-bg: #019682;
    --rg-web-img-bg: url(/web/pgslot4289/images/bg-web.webp);
    --rg-submit-btn: linear-gradient(to left, #e7c244, #e5cc81, #ffd679, #e1a626, #b4802c);
    --rg-register-card-bg: linear-gradient(0deg, #26ded290 0%, #04b0a4ab 100%);
    --rg-option-bg: linear-gradient(0deg, #027f72 0%, #03645a 100%);
    --rg-hover-option: #0eb0a0;
}

body.register-style {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kanit', sans-serif;
    color: var(--rg-main-text-color);
    min-height: 100vh;
    background-color: var(--rg-web-bg);
    background-image: var(--rg-web-img-bg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: top;
}

.register-style .page-content {
    height: 100%;
    position: relative;
}

.register-style a {
    text-decoration: none;
    color: var(--rg-main-text-color);
}

/* login */
.register-style .login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 140px 12px 90px 12px;
}

.register-style .login-card,
.register-style .input-group {
    position: relative;
}

.register-style .input-group input {
    background-color: transparent;
    border: none;
    outline: none;
    position: absolute;
    top: 52%;
    left: 23%;
    right: 0;
    width: 65%;
    height: 30px;
    color: var(--rg-main-text-color);
    cursor: text;
}

.register-style .input-group i {
    position: absolute;
    top: 57%;
    right: 30px;
    color: var(--rg-main-text-color);
}

.register-style .login-card-img {
    width: 100%;
    max-width: 400px;
}

.register-style .login-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 20px;
    font-size: 12px;
    top: -10%;
    right: 0;
    left: 0;
    z-index: 1;
}

.register-style .bottom-text {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
    font-size: 12px;
    bottom: -20px;
    right: 0;
    left: 0;
    z-index: 1;
}

.register-style .form-grouping,
.register-style .form-grouping img {
    width: 100%;
}

.register-style .submit-btn {
    border: none;
    border-radius: 24px;
    padding: 2px 24px;
    width: 100%;
    max-width: 180px;
    font-size: 18px;
    color: var(--rg-seccound-text-color);
    background-image: var(--rg-submit-btn)
}

.register-style .logo-web-login {
    max-width: 75%;
}

/* register */
.register-style .regis-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 140px 12px 90px 12px;
}

.register-style .regis-card {
    width: 100%;
    position: relative;
    max-width: 400px;
    border-radius: 24px;
    padding: 24px 12px;
    background: var(--rg-register-card-bg);
}

.register-style .regis-card .logo-web-login {
    position: absolute;
    margin: 0 auto;
    top: -55px;
    right: 0;
    left: 0;
    z-index: 1;
}

.register-style .regis-content {
    margin-top: 30px;
    font-size: 12px;
}

.register-style select {
    border: none;
    outline: none;
    position: absolute;
    top: 52%;
    left: 23%;
    right: 0;
    width: 65%;
    height: 30px;
    cursor: text;
    color: var(--rg-main-text-color);
    background-color: transparent;
}

.register-style select option {
    background-color: transparent !important;
    border: none;
    color: #000000;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.register-style .bank-select-input {
    cursor: pointer !important;
}

.register-style .bank-select-input::placeholder {
    color: var(--rg-main-text-color);
}

.register-style .bank-dropdown {
    position: absolute;
    list-style: none;
    z-index: 50;
    top: 85px;
    right: 20px;
    background: var(--rg-option-bg);
    padding: 8px;
    max-height: 300px;
    overflow-y: auto;
    transition: .3s ease-in-out;
    border-radius: 8px !important;
}

.register-style .bank-dropdown li {
    padding: 8px 10px;
    cursor: pointer;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: .2s;
}

.register-style .bank-dropdown li img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.register-style .bank-dropdown li:hover {
    cursor: pointer;
    border: 2px solid var(--rg-hover-option);
}

.register-style .bank-dropdown li.-active {
    background: var(--rg-hover-option);
}

.register-style .dd-icon {
    position: absolute;
    top: 57%;
    right: 25px;
    cursor: pointer;
}

.register-style .top-bg,
.register-style .bottom-bg {
    display: none;
}




/* responsive */
@media screen and (max-width: 575px) {
    .register-style * {
        font-size: 14px;
    }

    .register-style h4 {
        font-size: calc(1.275rem + .3vw);
    }

    .register-style .top-bg,
    .register-style .bottom-bg {
        display: block;
    }


    .register-style .top-bg {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
    }

    .register-style .bottom-bg {
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
    }
}

@media screen and (max-width: 300px) {
    .register-style .bottom-text {
        bottom: -80px;
    }
}