
form{
    width:35rem;
    
    margin: auto;
    color:whitesmoke;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(247, 250, 249, 0.256);
    border-radius: 12px;
    border: 1px solid rgba(244, 240, 240, 0.078);
    padding: 20px 25px;
}

.login-header{
  position:absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(224, 83, 32);
  width: 170px;
  height: 70px;
  border-radius: 0 0 20px 20px;

}

.login-header span h5{
 
  color: white;
}

.login-header::before{
  content:"";
  position: absolute;
  top: 0;
  left: -30px;
  width: 30px;
  height: 30px;
  border-top-right-radius: 50%;
  background: transparent;
  box-shadow: 15px 0 0 0 rgb(224, 83, 32);
}

.login-header::after{
  content:"";
  position: absolute;
  top: 0;
  right: -30px;
  width: 30px;
  height: 30px;
  border-top-left-radius: 50%;
  background: transparent;
  box-shadow: -15px 0 0 0 rgb(224, 83, 32);
}

#h5 {
  color: aliceblue;
  text-shadow:1px 1px 2px black;
  font-size: 18px;
  font-weight: bold;
  font-family: 'Kavivanar', sans-serif;
}
input[type=text]{
    width: 100%;
    margin: 10px 0;
    border-radius: 5px;
    padding: 15px 18px;
    box-sizing: border-box;
    border-color: aliceblue;
    outline: none;
  }

  @media(max-width: 600px) {
    input[type=text]{
     font-size: 14px;
    }
  }

input[type=text]:focus {
    border-color: #007bff;
}

  .line-container {
    text-align: center;
    position: relative;
  }
  
  .line {
    width: 100%;
    display: inline-block;
    border: none; 
    border-top: 2px solid white; 
  }
  
  .rotate-btn {
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* Add any styles you need for the button */
  }
  

  .rotate-btn {
  justify-content: center;
  }


  .rotate-btn figure {
    margin: 0;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #66a1f3;
  }
  .rotate-btn figure:hover{
   transform: scale(1.2);
    cursor: pointer;
    border: 2px solid #16cf35;
  }
button {
    background-color: rgb(224, 83, 32);
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    margin: 7px 0;
    width: 100%;
    font-size: 18px;
    font-family: "roboto";
    font-weight: bold;
     font-family: 'Kavivanar', sans-serif;
    border-color: #ffffff;
  }

button:hover {
    opacity: 0.8;
    cursor: pointer;
}

.button-container {
  position: relative;
}

.button-container i {
  position: absolute;
  left: 40%;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 600px) {
  .button-container i {
    position: absolute;
    left: 30%;
    top: 50%;
    transform: translateY(-50%);
  }
}

#search-button {
  padding-left: 40px;
}


.mainContainer{
    padding: 16px;
}

  /* Media queries for the responsiveness of the page */

@media screen and (max-width: 700px) {
    form{
      width: 33rem;
 }
}
 @media screen and (max-width: 600px) {
    form{
      width: 25rem;
    }
 }

 @media screen and (max-width: 440px) {
    form{
      width: 23rem;
    } 
  }

@media screen and (max-width: 400px) {
    form{
      width: 20rem;
    }
}
