*{
    margin: 0;
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

:root{
    --white1: #ffffff;
    --white2: #f8f8f8;
    --white3: #e9e9e9;
    --black1: #222222;
    --black2: #2c2c2c;

}
body{
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #9e9d9d;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;

}
.sec1{
width: 100%;
height: 800px;
background-color: var(--white2);
border-radius: 20px;
display: flex;
overflow:hidden ;
}
.sec11{
height: 100%;
    width: 50%;
    background-color: var(--white1);
}
.sec12{
    height: 100%;
    width: 50%;
    background-color: var(--white2);
    display: flex;
    flex-direction: column;
    justify-content: center;

}
.sec121{
    padding: 50px;
    display: flex;
    flex-direction: column;
}
.labal{
    margin-top: 20px;
    margin-bottom: 5px;
    opacity: 0.65;
}
input[type='text'] , input[type='email'] , input[type='password'] {
border: none;
background-color: var(--white1);
font-size: 18px;
padding: 20px;
width: 100%;
border-bottom: 1px solid rgb(193, 193, 193);
margin-bottom: 10px;

}
::placeholder{
    opacity: 0.6;
}
h2{
    margin-bottom: 20px;
}
input[type='submit'],.fk{
    margin-top: 40px;
    border: none;
    font-size: 20px;
    width: 100%;
    height: 60px;
    border-radius: 5px;
    background-color: var(--black2);
    color: white;
    cursor: pointer;

}
.fk{
    display: flex;
    justify-content: center;
    align-items: center;
}
p{
    margin-top: 50px;
    color: var(--black2);
}
a{
    text-decoration: none;
    font-weight: 600;
    color: var(--black1);
}
a::after{
    height: 2px;
    width: 80px;
    background-color: #222222;
    content: '';


    display: block;

    transition: 0.5s;
    margin-top: 10px;
}
a:hover:after{

    width:150px;

}
label{
    margin-top: 10px;
    opacity: 0.65;
}
.show{
    opacity: 0.5;
    border: #2c2c2c;

}

.sec111{
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 767px) {
 .sec1{
    flex-direction: column;
    height: 1180px;
 }
 body{
    padding: 0;
    margin: 0;
 }
}
@media (max-width: 767px) {
 .sec11{
    width: 100%;
    height: 400px;
 }
 .sec12{
    width: 100%;
 }

}
@media (max-width: 767px) {
 .sec121{
    padding: 15px;
 }
}


/* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp */



.error{
    position: fixed;
    z-index: 999999;
    top: 20px;
    background-color: #2c2c2c;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 300px;
    font-size: 20px;
    border-radius: 40px;
    transition: 0.4s;
    
}
.error i{
    background-color: #434343;
    padding: 10px;
    height: 20px;
    width: 20px;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
}

.hidden{
    display: none;
}

.sec111 img{
    width: 90%;
    margin-top: 50px;
}
.payment-tag {
    display: flex;
    background-color: #e0e0e0;
    color: #000000;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    justify-content: space-between;

}

/* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp *//* error msg imp */


.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  