@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    /* height: 100%;  */
    --primary-color: #FFC200;
    --secondary-color: #06284b;
    font-family: "Roboto", sans-serif;
}

.main-login-form {
    background-image:url("https://mylsc.in/lscbooklet/bim/BIM landing page Govt llms-01-03-03.svg");
    /* background-image:url("https://mylsc.in/lscbooklet/BIM landing pageFinal.svg"); */
    /* background-image:url("https://mylsc.in/lscbooklet/BIM landing page Govt.svg"); */
    background-size: cover;
background-position: center;
background-repeat: no-repeat;
    width: 95%;
    height: 87%;
    /* border-radius: 10px; */
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
    margin: auto; /* Centers horizontally */
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.login-form {
width: 40%;
height: 80%;
/* background-color: rgba(255, 255, 255, 0.3);  */
background-color: white;
border-radius: 20px;
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
top: 10%;
left: 13%;
float: right;
position: absolute;
display: flex;
align-items: center;
justify-content: center;
backdrop-filter: blur(10px);
}

.inside-flex{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
form{
    width:100%;

}
.login-form {
    display: flex;
    flex-direction: column;
        width: 370px;
        background:white;
        /* background: linear-gradient(to right, red, yellow); */
        padding: 30px;
        border-radius: 15px;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        backdrop-filter: blur(10px);
        text-align: center;
    }

    .login-header {
        font-size: 24px;
        font-weight: 700;
        color: var(--secondary-color);
        /* margin-bottom: 20px; */
        /* border-bottom: 2px solid #007bff; */
        padding-bottom: 5px;
        /* text-transform: uppercase; */
    }
/* .form-group{
width:200px;
} */
    .form-group input {
        width: 86%;
        padding: 12px;
        margin: 20px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        background: #e9ecef;
        /* box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1); */
        outline: none;
    }

    .form-group input:focus {
        background: rgba(255, 255, 255, 1);
        box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
    }

    .custom-btn {
        width: 85.5%;
        padding: 12px;
        margin-top: 15px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        /* font-weight: 500; */
        background:var(--secondary-color);
        color: white;
        cursor: pointer;
        /* transition: 0.3s ease; */
    }
  .forgot{
    text-decoration: none;
    color:var(--secondary-color);
  }
    .custom-btn:hover {
        background: #0056b3;
    }
    @media only screen and (min-width: 375px) {
        .main-login-form .login-form {
/* width: 40%;
height: 80%;
background-color: rgba(255, 255, 255, 0.6);
border-radius: 20px;
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
top: 10%; */
left: 5%;
/* float: right;
position: absolute;
display: flex;
align-items: center;
justify-content: center;
backdrop-filter: blur(10px); */
}
}


.captcha-block {
    display: flex;
    margin: 20px;
}
.invalid-feedback {
    position: absolute;
    bottom: -18px;
    left: -10px;
}

.form-group {
    position: relative;
}

.captcha-container {
    width: 160px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader {
    width: 40px;
    aspect-ratio: 2;
    --_g: no-repeat radial-gradient(circle closest-side,#000 90%,#0000);
    background:
      var(--_g) 0%   50%,
      var(--_g) 50%  50%,
      var(--_g) 100% 50%;
    background-size: calc(100%/3) 50%;
    animation: l3 1s infinite linear;
  }
  @keyframes l3 {
      20%{background-position:0%   0%, 50%  50%,100%  50%}
      40%{background-position:0% 100%, 50%   0%,100%  50%}
      60%{background-position:0%  50%, 50% 100%,100%   0%}
      80%{background-position:0%  50%, 50%  50%,100% 100%}
  }
