*{
  margin: 0;
  padding: 0;
  font-family: 'Times New Roman', Times, serif;
}
body {
  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;
}

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

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

form input {
  width: 100%;
  padding: 8px;
  margin: 5px 0;
  border: 1px solid #908a8a;
  border-radius: 10px;
  font-size: 14px;
  background: transparent;
}

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;
  transition: background-color 0.3s;
}
.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;
}
.p{
  font-size: 10px;
}
.p a{
  text-decoration: underline;
  color: rgb(150, 87, 65);
}
@media (max-width: 480px){
.signup-form {
    width: 80%;
    padding: 10px;
}

.form input {
    padding: 8px;
}

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

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

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