@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.6s ease-in-out;
  }
  
  body {
    /* background-color: #f2f2f2; */
    font-family: "Helvetica", sans-serif;
    color:#ffffff;
    height: 100vh;
    overflow-x: hidden;
  }
  
  .container {
    /* background-color: white; */
    max-width: 600px;
    
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
  }
  
  h1 {
    margin-top: 0;
    text-align: center;
  }
  
  /* input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 10px 0;
    width: 100%;
  } */
  
  button {
    background-color: #4caf50;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    margin: 10px 0;
    width: 100%;
    font-size: 18px;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
  }

  
  /* button:hover {
    background-color: #45a049;
  } */
  
  #total {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
  }

  /* //////////////////ma---------////////////////////////////- */
  .login_form_box:hover{
    box-shadow: 1px 1px 16px white;
    border: transparent;
    transform: scale(0.99);
  }
  section{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
  background: url(./images/hbg6.jpg);
  background-size: cover;
  }
    .login_form_box{
      border: 2px solid red;
      /* height: 450px;

      width: 600px; */
      margin-right: auto;
      margin-left: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: transparent;
      position: relative;
      border: 2px solid white;
      border-radius: 30px;
      z-index: 1;
    }
  h1{
    color:#fff;
    text-align: center;
    font-size: 2em;
  }

  .input_text{
    width: 410px;
  
    padding: 10px;
    border-bottom: 2px solid #fff;
  }
  .input_text ::placeholder{
    color: #fff;
  }
  .input_text i{
    color:#fff;
  }

  .input_text input {
    background-color: transparent;
   border: none;
   outline: none;
   color: white;
   font-size: 1.2 em;
    width:90%;
    font-weight: 600;
  }
  input[type="number"]{
    color: white;
    background: transparent;
    margin: 3px;
  }
  input[type="number"]:hover{
    border-radius: 21px;
    border-radius: 5px;
    /* background: linear-gradient(225deg, #e6e6e6, #ffffff); */
    box-shadow:  1px -1px 8px #dedede,
    -2px 2px 4px #ffffff;
  }

p,label{
  font-weight: bold;
}
label{
  text-shadow:  5x 5px 20px #100101,
  
}

button{
    width: 410px    ;
    padding: 8px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 35px;
    border: 0;
    
  }
button:hover{
  cursor: pointer;
  color: #fff;
  background:transparent ;
  border:1px solid white;

}

form{
    display: flex;
    flex-direction: column;
}

::placeholder{
  color: white;
}

@media screen and (max-width:500px) {
  .login_form_box{
    max-width:  300px;
    padding: 20px;
    margin-right: 14%;

  }
  .input_text{
    width:240px;
  }
  /* form{
    width: 300px;;
  } */
button{
  width: 240px;
}

p,label{
  font-size: 12px;
}
  
#total{
  font-size: 20px;
}

}