:root {
    --primary-color: #27AE60;
}

.form-box{
  width: 500px;
  background: rgba(0, 0, 0, 0.8);
  margin: 12% auto;
  padding: 30px 0;
  color: #fff;
  box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
}

.form-box h1{
  text-align: center;
  margin-bottom: 40px;
}

.input-box{
  margin: 31px auto;
  width: 80%;
  border-bottom: 1px solid #fff;
  padding-top: 10px;
  padding-bottom: 5px;
}

.input-box input{
  width: 90%;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
}

.input-box input::placeholder{
  color: #ccc;
}


.eye{
  position: absolute;
}

#hide1{
  display: none;
  color: var(--primary-color);
}

.login-btn{
  background: #fff;
  color: black;
  width: 80%;
  margin: 40px auto 20px;
  padding: 10px 0;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  display: block;
  outline: none;
  cursor: pointer;
  transition-duration: 0.3s;
}

.login-btn:hover {
  background: var(--primary-color);
  color: white;
}

.signin-container {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  align-items: center;
  height: 50px; /* Adjust the height based on your layout */
}

.signin-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin: 0 5px;
  border: black;
  background-color: white;
  cursor: pointer;
}

.signin-button:hover {
  background-color: var(--primary-color);
}

.google-icon {
  width: 24px;
  height: 24px;
  background-image: url('https://www.gstatic.com/firebasejs/ui/2.0.0/images/auth/google.svg');
  background-size: cover;
}

.github-icon {
  width: 24px;
  height: 24px;
  background-image: url('https://cdn-icons-png.flaticon.com/512/25/25231.png');
  background-size: cover;
}

@media screen and (max-width: 600px) {

  .form-box{
    width: 80%;
  }

}
