/* auth.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.home-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  background-color: #007bff;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  z-index: 999;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.home-btn:hover {
  background-color: #0056b3;
}


.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.login-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  width: 350px;
  text-align: center;
  color: #fff;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-area {
  margin-bottom: 15px;
}

.logo {
  width: 80px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.login-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

form input {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

form input::placeholder {
  color: #ddd;
}

form input:focus {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid #fff;
}

.links {
  text-align: right;
  margin-bottom: 15px;
}

.right-link {
  color: #aad;
  font-size: 14px;
  text-decoration: none;
}

.right-link:hover {
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  padding: 12px;
  background: #00bcd4;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.login-btn:hover {
  background: #0097a7;
}

.signup-text {
  margin-top: 15px;
  font-size: 14px;
}

.signup-text a {
  color: #aad;
  text-decoration: none;
}

.signup-text a:hover {
  text-decoration: underline;
}