body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background:linear-gradient(90deg,#707070,#d6c0c0);
  display: flex;
  align-items: center;
  height: 100vh;
}

.login-btn {
  padding:10px 30px;
  margin-left: 250px;
  margin-bottom: 250px;
  background-color: #f44336;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  font-size: 30px;
} 

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
}

.login-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  box-shadow:10px 10px 20px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.login-box h2 {
  margin-bottom: 15px;
  font-size: 24px;
}

.social-icons button {
  background: none;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  margin: 5px;
  font-weight: bold;
  cursor: pointer;  
}

.login-box input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  background: #eee;
  border-radius: 100px;
}

.forgot {
  display: block;
  font-size: 12px;
  margin-bottom: 15px;
  color: #666;
  text-decoration: none;
}

.signin-btn {
  background-color: #f44336;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}