* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(49, 49, 78, 0.8),rgba(0, 0, 0, 0.8)), url(../signBG.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;}


h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  position: relative;
}
h1::after{
  content: '';
  width: 80px;
  height: 5px;
  border-radius: 3px;
  background: black;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);

}
.form-container {
position:absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
padding: 50px 30px 150px ;
background: bisque;
color: black;
width:90%;
max-width: 450px;
height: clamp(500px, 50vh, 550px);
text-align: center;
}

.form-group {
  display: flex;
  margin-bottom: 15px;
}
i{
  padding: 10px;
  margin-left: -10px;
}

.form-group input {
  width: 100%;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.submit-btn {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 10px;
  background-color: #472dbb;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #4565a0;
}
.back{
  display: block;
  width: 100%;
  padding: 10px;
  margin: 10px;
  background-color: #472dbb;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;  
}
.back:hover {
  background-color: #4565a0;
}
p {
  text-align: left;
  font-size: 1rem;
}