
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: url('https://images.unsplash.com/photo-1623059649115-c3b6b0e30f6f?auto=format&fit=crop&w=1500&q=80') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}


.sing-container {
  width: 100%;
  max-width: 400px;
  padding: 20px;
}


.sing-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  color: white;
  text-align: center;
}


.sing-form h2 {
  margin-bottom: 25px;
  font-size: 24px;
  color: #ffffffdd;
}


.sing-form input {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  outline: none;
}

.sing-form input:focus {
  box-shadow: 0 0 0 2px #6a00f4aa;
}


.sing-form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: transform 0.3s ease;
}

.sing-form button:hover {
  transform: scale(1.03);
}


.sing-form p {
  margin-top: 18px;
  font-size: 14px;
  color: #ddd;
}

.sing-form a {
  color: #ffda75;
  text-decoration: none;
  font-weight: bold;
}

.sing-form a:hover {
  text-decoration: underline;
}


#signup-message {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
}


/* login */


body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1500&q=80') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}


.login-form {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 30px;
  width: 100%;
  max-width: 400px;
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  text-align: center;
}


.login-form h2 {
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 600;
}


.login-form input[type="email"],
.login-form input[type="password"] {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 15px;
}


.login-form button {
  width: 100%;
  padding: 14px;
  background: #ffffffdd;
  color: #222;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.login-form button:hover {
  background: #fff;
}


.login-form p {
  margin-top: 15px;
  font-size: 14px;
}

.login-form a {
  color: #ffda75;
  text-decoration: none;
  font-weight: bold;
}

.login-form a:hover {
  text-decoration: underline;
}


.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-top: 10px;
  color: #ddd;
}


.dashboard-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
}

.dashboard-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  color: white;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.dashboard-box h1 {
  font-size: 28px;
  margin-bottom: 15px;
}

.dashboard-box p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #f0f0f0;
}

.dashboard-box button {
  padding: 12px 24px;
  font-size: 16px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.dashboard-box button:hover {
  background: linear-gradient(135deg, #5a00cc, #1d5cf2);
}
