* {
    font-family: CPN, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  background: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

form label {
  display: block;
  margin: 10px 0 5px;
}

form input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.options, .register {
  text-align: right;
  margin-top: 10px;
}

.options a, .register a {
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
}

button {
  width: 100%;
  padding: 10px 8px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 2px;
  margin-top: 20px;
  cursor: pointer;
}

#message {
  margin-top: 15px;
  text-align: center;
  color: red;
}

.flex {
    display: flex;
    gap: 15px;
}
