*{
  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;
}

.login-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);
}

.login-form h1 {
  font-size: 25px;
  margin-bottom: 20px;
  color: #7d2f15;
  font-weight: bold;
}

form label {
  display: block;
  text-align: left;
  font-size: 14px;
  margin-bottom: 0px;
  color: black;
}

form input {
  width: 100%;
  padding: 8px;
  margin: 5px 0;
  border: 1px solid #908a8a;
  border-radius: 10px;
  font-size: 14px;
  background: transparent;
}
.password-container {
  position: relative;
}
.toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #7a7a7a;
  cursor: pointer;
}

.options {
  display: flex;
  flex-direction: column;
}
.forgot-password  {
  font-size: 14px;
  color: red;
  text-decoration: none;
  align-self: flex-end;
}

.forgot-password:hover {
  text-decoration: none; 
  color: red;

}

.check{
  display: inline-flex;
  align-items: center;
  margin-right: 275px;
  padding-bottom: 10px;
  text-align: left;  
}
.check input{
  margin: 0;
  text-align: left;
}
.check label{
  margin: 0;
  text-align: left;
}

form button {
  width: 100%;
  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;
}

.div {
  display: flex;
  align-items: center;
  margin: 10px 0;
  color: #888;
  font-size: 14px;
}

.div:before,
.div:after {
  content: '';
  flex: 1;
  height: 1px;
  background: #ddd;
}

.social-buttons {
  display: flex;
  flex-direction: column;
}

.social-buttons button {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 0 5px rgb(120, 116, 116);
}

.facebook-btn {
  background-color: #4267B2;
  color: black;
  
}
.facebook-btn i{
  margin:8px ;
}
.gmail-btn {
  background-color: white;
  color: black;
}

p {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

p a {
  text-decoration: none;
}
@media (max-width: 480px){
  .login-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;
}

.social-buttons {
    flex-direction: column; 
    gap: 10px;
}

.social-buttons button {
    width: 100%;
}
}
