body {
  margin: 0;
  padding: 0;
}
.login_container {
  height: 100vh;
  padding: 10px;
}
.section_login_parent {
  margin-top: 25px;
  display: flex;
  justify-content: space-around;
}
.section_login_child {
  width: 1400px;
  display: flex;
  justify-content: space-around;
}
.section_logo {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.heading {
  color: #d9141d;
  text-align: center;
  margin-top: 20px;
}
.heading_swap {
  color: #000;
  text-align: center;
}
.heading::after {
  content: "";
  display: block;
  width: 250px;
  height: 4px;
  background-color: #000;
  margin: auto;
  margin-top: 10px;
}
.heading_swap::after {
  content: "";
  display: block;
  width: 250px;
  height: 4px;
  background-color: #d9141d;
  margin: auto;
  margin-top: 10px;
}
.section_singin {
  height: 450px ;
  width: 800px;
  padding: 25px;
  background-color: rgba(255, 225, 225, 0.275);
  border-radius: 30px;
}
.section_singin:hover {
  box-shadow: 0.1px 0.1px 10px rgb(228, 227, 227);
}

/* qr code secion */

.app_logo1 {
  width: 60px;
  margin-bottom: 50px;
}
.app_logo2 {
  width: 63px;
  margin-bottom: 55px;
}
.qrcode {
  width: 130px;
}
.qrcode_parent {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
.qrcode_child {
  margin: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* login section */

.inputfields {
  display: flex;
  flex-direction: column;
}
#loginForm {
  margin: 0 50px;
}
.input{
    width: 100%;
  height: 45px;
  border: 1px solid rgba(22, 21, 21, 0.6);
  border-radius: 8px;
  font-size: 20px;
  margin-bottom: 20px;
}
label{
    margin-bottom: 5px;
}
.forgetpassword_parent{
    display: flex;
    justify-content: space-between;
}
#loginbtn{
    width: 300px;
    height: 50px;
    border: none;
    border-radius: 5px;
    background-color: #d9141d;
    text-transform: uppercase;
    color: #fff;
    font-weight: 900;
    letter-spacing: 2px;
}
.loginbtn{
    width: 100%;
    display: flex;
    justify-content: center;
}
.social_btns{
    width: 100%;
    height: 50px;
    border: none;
    display: flex;  
    justify-content: space-evenly;
    margin-top: 50px;
}
.social_btn{
    width: 250px;
    background-color: #fff;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 400;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.g_btn{
    border: 2px solid #CA191F;
    color: #CA191F;
}
.f_btn{
    color: #0D6EFD;
    border: 2px solid #0D6EFD;
}
#or{
    display: flex;
    justify-content: space-evenly;
    margin-top: 50px;
}
#or p{
    width: 200px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.25);
}
#or h6{
    margin-top: 10px;
}
#remember{
    margin-right: 10px;
    background-color: #CA191F;
}
#forget{
    color: #000;
    text-decoration: none;
}


@media only screen and (max-width: 600px) {
    .section_login_child{
        flex-direction: column;
        flex-direction: column-reverse;
        margin: 10px;
        margin-bottom: 200px;
    }
    .section_singin{
        width: 350px;
        border-radius: 15px;
    }
    #loginForm {
        margin: 10px;
      }
    .loginbtn{
        margin-top: 20px;
    }
    #or{
        /* margin: 10px; */
    }
    #or p {
        width: 100px;
    }
    .social_btn{
        width: 120px;
        height: 40px;
        font-size: 15px;
        font-weight: 500;
    }
    .qrcode_parent{
        margin-top: 20px;
    }
    .qrcode{
        width: 60px;
    }
}