

body.guest_body {
    font-family: "Google Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column; /* header উপরে, main নিচে */
}

a.forgot-password:hover{
    text-decoration: underline;
}

.guest_root {
    flex: 1; /* guest_root পুরো height নেবে */
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 0;
}

.guest_root::before {
    position: fixed; /* background সবসময় viewport এ থাকবে */
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.24;
}

header {
    position: relative;
    z-index: 11; /* header সবসময় content এর উপরে থাকবে */
    width: 100%;
}

header a.nav-link.guest_help {
    font-weight: 600;
    font-size: 14px;
    line-height: 27px;
}

header.sticky-header {
    position: fixed;  
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;      
}

header.sticky-header::before {
    opacity: 1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1),
                visibility 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

body.guest_body main {
    flex: 1; 
    display: flex;
    justify-content: center;
    align-items: center;   
}
.login_logo {
    width: 95px;
    height: 95px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    border-radius: 100%;
    position: relative;
   
}

.login_logo a {
    width: 44px;
}
span.logo_circle {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 50%;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1);
    animation: spin 3s linear infinite;
    opacity: 0.16;
}


.title_div h4 {
    font-size: 19px;
    font-weight: 700;
    line-height: 29px;
}

.title_div p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
}
label {
    font-size: 13px;
    position: absolute;
    top: -8px;
    left: 10px;
    z-index: 11;
    line-height: 1.5;
    font-weight: 600;
    padding: 0px 5px;
    display: flex;
    align-items: center;
    border-radius: 5px;
}

form input.login_input::placeholder{
    text-align: right;
}
a.btn.new_account {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    padding: 9px;
}

button.sign_in{
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    padding: 9px;
}

button.btn.btn-primary.btn-lg {
    font-size: 15px;
    font-weight: 700;
    line-height: 26px;
}

body.guest_body form input{
    padding: 10px;
}
body.guest_body form .row{
    row-gap: 15px;
}
i.fas.fa-eye-slash,i.fas.fa-eye {
    position: absolute;
    right: 9px;
    top: 16px;
    cursor: pointer;
}
body.guest_body form .card i.fas{
    color: black;
}

/* body color set */
body.guest_body .guest_root::before{
    background-image: url("../../assets/img/background-3-blur.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
body.guest_body header a.nav-link.guest_help{
    color: #1a2c3c;
}

body.guest_body header.sticky-header::before{
    backdrop-filter: blur(6px);
    background-color: rgb(255, 255, 255);
}
body.guest_body span.logo_circle{
    background-image: linear-gradient(135deg,transparent 50%,#34A853 100%);
}

body.guest_body .title_div h4{
    color: #1a2c3c;
}
body.guest_body .title_div p {
    color: #3d5059;
}
body.guest_body label{
    color: #324550;
    background: white;
}
body.guest_body a.btn.new_account{
    color: #214baf;
    background: #4285f429;
}
body.guest_body i.fas.fa-eye{
     color: #214baf;
}

/* dark mode css */
body.dark-mode .guest_root::before{
    background: #101f31;
    color: white;
    opacity: 1;
}

body.dark-mode header a.nav-link.guest_help,body.dark-mode header i{
    color: #fff;
}
body.dark-mode header button.settings_btn{
    box-shadow:0px 0px 4px 0px #b9afaf;
}

body.dark-mode section .card{
    background: #101f31;
    box-shadow: 0px 0px 6px 0px #2d4868;
}
body.dark-mode section .card .title_div h4{
    color: white;
}
body.dark-mode section .card .title_div p{
    color: #8ca0a4;
}
body.dark-mode section .card input,body.dark-mode section .card select,
body.dark-mode section .card input:not(:placeholder-shown){
    background: none;
    border: 1px solid #2c3745;
}
body.dark-mode section .card select{
     color: #8CA0A4;
}
body.dark-mode section .card input::placeholder{
     color: #8CA0A4;
}
body.dark-mode section .card .input-group-text{
    background: none;
    border: 1px solid #2c3745;
    color: #8CA0A4;
}

body.dark-mode section .card label{
    background: #101f31;
    color: #8CA0A4;
}
body.dark-mode section .card input:focus + label{
    color: white;
}
body.dark-mode section .card input{
    color: white;
}
body.dark-mode section .card a.new_account{
    color: #8DBFFB;
}
body.dark-mode section .card .stepper .step-item .step-label{
    color: #8CA0A4;
}
body.dark-mode section .card i.fas {
    color: #8CA0A4 !important;
}


/* stepper css start form here */
.stepper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stepper::before {
    display: none;
}

.step-item {
    position: relative;
    text-align: center;
    flex: 1;
    z-index: 1;
}

.step-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25%;
    left: 50%;
    right: -50%;
    height: 2px;
    background: #dee2e6;
    transform: translateY(-50%);
    z-index: 0;
}

/* Circle */
.step-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 8px;
    position: relative;
    z-index: 2;
}

/* Label */
.step-label {
    font-size: 12px;
}

/* Active */
.step-item.active .step-circle {
    background-color: #00a76f;
    color: #fff;
}

.step-item.active .step-label {
    font-weight: 600;
    color: #1a2c3c;
}


@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
