* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a,
a:hover,
a:focus,
a:visited,
a:active {
  text-decoration: none;
}

p,
ul,
li {
  padding: 0;
  margin: 0;
}



body {
  font-family: 'Poppins', sans-serif;
}




.form-container {
  max-width: 100%;
  margin: 50px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-title {
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 24px;
  color: #495057;
}

.form-text {
  font-size: 12px;
  color: #6c757d;
}



 .form-container .iner{
  display: flex;
   align-items: end;
   margin-bottom: 20px;
  } 

.form-container .iner .form-control{
  border: none;
  border-bottom: 1px dotted #000;
  border-radius: 0;
  margin-top: 10px;
  box-shadow: none;
}  
.form-container .iner .form-label{
 margin-bottom: 0px !important;
 align-items: end;
}  
.form-container .iner .form-select{
  border: none;
  border-bottom: 1px dotted #000;
  border-radius: 0;
  margin-top: 10px;
  box-shadow: none;
}  

.form-button{
display: flex;
justify-content: center;
}
.form-button button{
 width: 40%;
 background-color: #000;
 color: #fff;
 border: #000 solid 1px;
 margin-top: 20px;
 padding: 5px 0px;
  }
  .form-button button:hover{
    background-color: #fff;
    color: #000;
    border: #000 solid 1px;
     }
