*{
  margin: 0;
  padding: 0;
  font-family: 'Times New Roman', Times, serif;
}
body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(imgs/5947024203414881145.jpg);
  height: 100vh;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
form{
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgb(33, 33, 33);
  width: 400px;
  text-align: center;
  margin: 5px;
  position: absolute;
  right: 40px;
  backdrop-filter: blur(20px);
}
img{
  width: 50px;
  margin-bottom: 15px;
}
h1{
  font-size: 15px;
  color: #7d2f15; 
  margin-bottom: 10px;
}
p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}
.logo-input{
  width: 100%;
  padding: 8px;
  margin: 9px 4;
  border: 1px solid #908a8a;
  border-radius: 10px;
  font-size: 14px;
  background: transparent;
  text-align: left;
}
input{
  padding: 8px;
  margin: 5px 0;
  border: none;
  font-size: 14px;
  background: transparent;
  outline: none;
}
form button {
  width: 90%;
  height: 45px;
  background: transparent;
  border: none;
  outline: none;
  border-radius: 10px;
  box-shadow: 0 0 9px rgb(96, 93, 93);
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #7d2f15;
  margin: 5px;
}
button a{
  text-decoration: none;
  color: #7d2f15;
 }
 button a:hover {
  text-decoration: none; 
  color: #7d2f15;

}
@media (max-width: 480px){
  form{
      width: 80%;
      padding: 10px;
  }

  .form input {
      padding: 8px;
  }

  .form button {
      font-size: 14px; 
      padding: 8px;
  }
  .login-form h1 {
    font-size: 24px; 
}
.form input,
.form button {
    font-size: 16px;
}
}