
.popUpBackground{
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.342) ;
    backdrop-filter: blur(1px);
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    display: none;
    z-index: 100;
}
  .login-popup-container {
    background: white;
    width: 350px;
    height: 420px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}
  
  .form-box {
    display: flex;
    width: 200%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
  }
  
  .form {
    width: 700px;
    padding: 40px 30px;
    box-sizing: border-box;
  }
  
  .form h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  
  .form button {
    width: 100%;
    padding: 10px;
    background: linear-gradient(150deg, #66baea, #114588);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .form button:hover {
    background-color: #0097a7;
  }
  
  .form p {
    text-align: center;
    font-size: 0.9rem;
  }
  
  .form a {
    color: #0043d4;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
  }
  
  .register-form {
    background-color: #f7f7f7;
    width: 100%;
  }
  .closeLoginPopup{
    z-index: 10;
    border: none;
    position: absolute;
    background-color: black;
    right: 0px;
    top: 0px;
    padding: 10px;
    border-bottom-left-radius: 25px ;
    cursor: pointer;
    transition: all 0.3s ease;
    padding-top: 13px;
    padding-right: 13px;
  }
  .closeLoginPopup:hover{
    background-color: #002983;
  }
  .closeLoginPopup svg{
    fill: white ;
  }
  .name{
    width: 40px;
  }