@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.form {
  z-index: 1;
  font-family: "Inter", sans-serif;
  position: absolute;
  width: 420px;
  max-width: 95%;
  text-align: center;
}

.form .login-form,
.form .signup-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.form .signup-form {
  display: none;
}

.form h4 {
  color: #2d3748;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.form hr {
  border: none;
  border-top: 2px solid #e2e8f0;
  margin: 20px 0 30px;
}

.form .user-input {
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  outline: none;
  border: 2px solid #e2e8f0;
  background: #f7fafc;
  color: #2d3748;
  font-size: 15px;
  padding: 0 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form .user-input::placeholder {
  color: #a0aec0;
}

.form .user-input:hover {
  border-color: #cbd5e0;
  background: #ffffff;
}

.form .user-input:focus {
  border-color: #667eea;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form .options-01 {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form .options-01 input {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  cursor: pointer;
  accent-color: #667eea;
}

.form .options-01 .remember-me {
  color: #4a5568;
  font-size: 14px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.form .options-01 a {
  color: #667eea;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.form .options-01 a:hover {
  color: #764ba2;
  text-decoration: underline;
}

.form .btn {
  outline: none;
  border: none;
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.form .btn:active {
  transform: translateY(0);
}

.form .options-02 {
  color: #718096;
  font-size: 14px;
  margin-top: 25px;
}

.form .options-02 a {
  color: #667eea;
  font-weight: 500;
  transition: color 0.3s ease;
}

.form .options-02 a:hover {
  color: #764ba2;
  text-decoration: underline;
}

.b-btn {
  color: white;
}
.b-btn.paypal i {
  color: blue;
}
.b-btn:hover {
  text-decoration: underline;
}
.b-btn i {
  font-size: 20px;
  color: yellow;
  margin-top: 2rem;
}
.d-flex {
  display: flex;
  justify-content: space-between;
}

/* Responsive CSS */
@media screen and (max-width: 500px) {
  .form {
    width: 95%;
  }

  .form .login-form,
  .form .signup-form {
    padding: 30px 25px;
  }

  .form h4 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .form .user-input {
    width: 100%;
  }

  .form .btn {
    width: 100%;
  }
}
