:root{
    --Black—100: #0e0f0c;
    --Green-cxp: #93F17B;
    --Bright-grey: #f6f7f5;
    --phudu: "Phudu", cursive;
    --plus: "Plus Jakarta Sans", sans-serif;
}

.text-center{
    text-align: center;
}

a{
    transition: all ease 0.3s;
    text-decoration: none;
}
a:hover {
    color: #ff4500;
    cursor: pointer;
}

.half_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 12px;
}

.login-page-body{
    background-color: var(--Green-cxp);
    min-height: 100svh;
}

#login-page{
    max-width: 800px;
    margin: 0 auto;
    padding: 15svh 0 2rem;
    font-family: var(--phudu);
    font-optical-sizing: auto;
}


.login-modal{
    background-color: var(--Green-cxp);
    z-index: 2;
    position: relative;
    padding: 32px 52px;
    border-radius: 20px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

.login-form{
    max-width: 440px;
    margin: 0 auto;
}

.login-error{
    /*text-align: center;*/
}

.header-modal figure{
    padding: 0;
    margin: 0;
}

.header-modal figure img{
    width: 140px;
}

.modal_title {
    font-family: var(--phudu);
    font-size: 30px;
    line-height: 40px;
    color: var(--Black—100);
    text-align: center;
}

.login-subtitle{
    text-align: center;
    font-size: 16px;
    color: var(--Black—100);
    font-family: var(--plus);
}

.login-subtitle a{
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 5px;
}


/* Form Card */
.form_card {
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--Black—100);
    margin-bottom: -1px;
}

.form_inner {
    padding: 24px;
}

.form_inner label {
    font-size: 16px;
    color: var(--Black—100);
    font-family: var(--phudu);
    padding-bottom: 12px;
    display: block;
}

.form_input {
    position: relative;
    margin-bottom: 16px;
}

.form_input .addon {
    position: absolute;
    top: 9px;
    left: 18px;
}

.input_field {
    height: 42px;
    border-radius: 40px;
    border: 1px solid var(--Black—100);
    width: 100%;
    box-sizing: border-box;
    padding: 0px 24px;
    text-indent: 30px;
}

.password-input {
    padding-right: 56px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #0e0f0c;
    padding: 0;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.password-toggle .icon-eye-off {
    display: none;
}

.password-toggle.is-visible .icon-eye {
    display: none;
}

.password-toggle.is-visible .icon-eye-off {
    display: block;
}

.input_field_regular {
    height: 42px;
    border-radius: 40px;
    border: 1px solid var(--Black—100);
    width: 100%;
    box-sizing: border-box;
    padding: 0px 24px;
}

.country-select {
    display: block;
}
.country-select.inside .flag-dropdown {
    width: 100%;
}
.country-select.inside .flag-dropdown:hover .selected-flag {
    background: transparent;
}
.country-select.inside .selected-flag {
    width: 95%;
}
.country-select .selected-flag {
    z-index: 1;
    position: relative;
    width: 36px;
    height: 100%;
    padding: 0 0 0 27px;
}
.country-select .country-list {
    position: absolute;
    width: 100%;
    border-radius: 24px;
    font-weight: 400;
    font-family: var(--plus);
    font-size: 14px;
}
.country-select.inside input,
.country-select.inside input[type="text"] {
    padding-left: 63px;
}

.phone_grid {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    column-gap: 12px;
}

.form_inner.bright_greay_card {
    display: none;
}

.forgot_pss {
    color: #808080;
    font-size: 12px;
    font-family: var(--plus);
    font-weight: 700;
    line-height: 100%;
    text-decoration-line: underline;
}

/* Socials connect */

.bright_greay_card {
    background: var(--Bright-grey);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.social_login {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 24px;
    list-style: none;
    padding: 16px 0 0;
    margin: 0;
}

.label_texts{
    font-family: var(--plus);
    line-height: 1;
    margin-top: 20px;
    font-size: 14px;
}

.label_texts p{
    margin: 0;
    font-size: 14px;
}

/* Submit */
.input_btn {
    height: 44px;
    border-radius: 40px;
    color: #fff;
    font-family: var(--phudu);
    font-size: 17px;
    background: var(--Black—100);
    outline: none;
    cursor: pointer;
    border: 0;
    width: 100%;
}

.terms_texts {
    font-size: 14px;
    padding-top: 16px;
    text-align: center;
    font-family: var(--plus);
}

.terms_texts a{
    text-decoration: underline;
}

.modal-backdrop{
    --bs-backdrop-zindex: 1;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg);
    opacity: 0.5;
}
