/* style.css - Clean, blur effect, eye-soothing styling */

body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url('https://images.unsplash.com/photo-1637775297458-7443ffd545b2?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8N3x8YmxhY2slMjBiYWNrZ3JvdW5kfGVufDB8fDB8fHww') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
  box-sizing: border-box;
}

form, .content {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  color: #fff;
  width: 90%;
  max-width: 400px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

h2 {
  text-align: center;
  color: #ffffff;
  text-shadow: 1px 1px 5px #000;
  text-transform: uppercase;
  font-size: 40px;
  margin-bottom: 10px;
}

label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #f1f1f1;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
button {
  
  padding: 10px;
  margin-top: 5px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

button {
  background-color: #5e60ce;
  color: white;
  font-weight: bold;
  margin-top: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #3a0ca3;
}

a {
  color: #d6d6f5;
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  margin-top: 10px;
  text-align: center;
  transition: color 0.3s ease;
 
}

a:hover {
  text-decoration: underline;
}

p {
  color: #f0f0f0;
  text-shadow: 1px 1px 2px #000;
  text-align: center;
}

footer {
  position: fixed;
  bottom: 0;
  text-align: center;
  padding: 10px;
  color: #fff;
  font-size: 14px;

}
