﻿  .login_logo {
              width: 60%;
    margin: 0 auto;
    text-align: center;
    display: block;
    /* margin: 50px 0; */
    margin-top: 0;
    margin-bottom: 50px;
        }
        .right_side_main_form
        {
                display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 100px;
        }
        .right_side_main_form form
        {
                background-color: #fdf4f4;
    padding: 50px;
    border-radius: 20px;
        }
       .right_side_main_form form label {
    display: inline-block;
    color: black;
    margin-bottom: 13px !important;
    font-weight:500;
}
      .right_side_main_form form input {
    border: none !important;
    height: 40px;
}
      #remember-check
      {
          height:1em;
      }

      button
      {
              height: 40px;
      }

        .account-pages {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .container {
            width: 90%;
        }

        body {
            background-color: white;
        }

        .rigt_side_img_login {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: right;
            border-radius: 0 60px 60px 0;
        }
        .new_login_main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            height: 100vh;
        }
        /* Autofill background color */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset; /* Change 'white' to your desired background color */
}

/* Autofill text color */
input:-webkit-autofill {
    -webkit-text-fill-color: #333; /* Change '#333' to your desired text color */
}
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset; /* Change 'white' to your desired background color */
}

/* Autofill text color on focus */
input:-webkit-autofill:focus {
    -webkit-text-fill-color: #333; /* Change '#333' to your desired text color */
}


@media (max-width:991px)
{
    .rigt_side_img_login {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: right;
    border-radius: 0 0 30px 30px;
    aspect-ratio: 16 / 9;
    margin-bottom: 39px;
}
   .new_login_main
   {
       display:block;
       height:auto;
   }
    .right_side_main_form form {
        padding: 20px;
        border-radius:20px;
    }
    .right_side_main_form
    {
        padding:0 30px;
    }
}

#overlay {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    display: none;
    background: rgba(0,0,0,0.6);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 70px;
    height: 70px;
    border: 6px #ddd solid;
    border-top: 6px #2e93e6 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
    100% {
        transform: rotate(360deg);
    }
}