
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-image: url('https://images.unsplash.com/photo-1519750783826-e2420f4d687f?q=80&w=687&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  display: flex;
  justify-content: center;  
  align-items: center;      
  height: 100vh;            
  margin: 0;
  padding: 20px;
}


header {
 
  padding: 15px 20px;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 30px;
}

header nav a {
  color: #007bff;
  text-decoration: none;
  margin: 0 10px;
}

header nav a:hover {
  text-decoration: underline;
}


main {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.container {
  background: white;
  padding: 40px 50px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
  max-width: 400px;
  width: 100%;
  text-align: center;
}


form input[type="text"],
form input[type="email"],
form input[type="password"],
form select {
  width: 100%;
  padding: 10px 8px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form button {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

form button:hover {
  background-color: #0056b3;
}


footer {
  
  padding: 15px 20px;
  text-align: center;
  font-size: 14px;
  color: #333;
  margin-top: 30px;
}
