* {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.container {
  background-color: #fe8c;
  gap: 10px;
  width: 100%;
  max-width: 350px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
#eye {

  transform: translate(130px,-25px);
  cursor: pointer;
  font-size: 20px;
  color: #aaa;
  transition: color 0.3s;
}

#eye:hover {
  color: #007BFF;
}
#eyes {
  transform: translate(130px,-25px);
  cursor: pointer;
  font-size: 20px;
  color: #aaa;
  transition: color 0.3s;
}

#eyes:hover {
  color: #007BFF;
}
.login {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.signup {
  display: none;
  gap: 10px;
}
.signupField {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.loginField {
  display: flex;
  flex-direction: column;
  gap: 10px;

}
h1 {
  font-size: 1.5rem;
  padding-bottom: 10px;
}
h2 {
  padding-bottom: 10px;
}
input {
  width: 100%;
  height: 2rem;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.btn {
  width: 100%;
  padding: 10px;
  background: black;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: .9rem;
  margin-top: -20px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}
.google {
  background-color: white;
  border: 1px solid #ccc;
  color: #444;
  font-weight: 500;
}

.google img {
  width: 20px;
  height: 20px;
}
.modal img {
  width: 20px;
  height: 20px;
  position: relative;
  left: 3px;
}
#signup, #login {
  cursor: pointer;
}
 /* Modal Style */
 .modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: auto;
  padding-top: 60px;
}

  /* Modal Style - Google Inspired */
  .modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  overflow: auto;
  padding-top: 100px;
  font-family: 'Roboto', sans-serif;
}

.modal-content {
  background-color: #fff;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
  animation: modal-animation 0.3s ease-in-out;
}

.modal-header {
  font-size: 18px;
  font-weight: 500;
  color: #202124;
  margin-bottom: 10px;
}

.modal-message {
  font-size: 14px;
  color: #202124;
  margin-bottom: 20px;
}

.modal-button {
  background-color: #4285f4;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.modal-button:hover {
  background-color: #3367d6;
}

.close {
  color: #4285f4;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

/* Animation for modal */
@keyframes modal-animation {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}