/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

#blur-background {
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  filter: blur(5px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
  padding: 20px;
}

.modal-header h2 {
  font-size: 1.5em;
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5em;
  color: gray;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.app-logo {
  max-width: 80px;
  margin: 20px auto;
}

/* Form Styles */
.form-group {
  margin-bottom: 15px;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.signin-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #007BFF;
  color: white;
  font-size: 1em;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  margin: 20px 0;
}

.signin-btn:hover {
  background-color: #0056b3;
}

.signin-btn:after {
  display: none;
}

.forgot-password {
  font-size: 0.9em;
  color: gray;
}

.forgot-password a {
  color: blue;
  text-decoration: underline;
}

p {
  margin: 10px 0;
}

p a {
  color: #007BFF;
  text-decoration: none;
}

p a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
/* Social Sign-In Buttons */
.social-signin {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.social-btn img.icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.google-btn {
  background-color: #fff;
  color: #333;
}

.google-btn:hover {
  background-color: #f2f2f2;
}

.apple-btn {
  background-color: #000;
  color: #fff;
}

.apple-btn:hover {
  background-color: #333;
}

/* Divider Line */
hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 20px 0;
}
