/* reset.css */

/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f5f7fa;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* Header */
header {
  width: 100%;
  background: teal;
  padding: 1rem;
  text-align: left;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

/* Page Title */
h1 {
  margin: 2rem 0 1rem;
  color: #2c3e50;
  font-size: 2rem;
  text-align: center;
}

/* Form */
form {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

form p {
  margin-bottom: 1rem;
  color: #555;
  font-size: 0.95rem;
}

input[type="text"] {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

input[type="text"]:focus {
  border-color: #3498db;
  outline: none;
}

/* Button */
button {
  background: #3498db;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #2980b9;
}

/* Messages */
.message {
  margin-top: 1rem;
  color: #e74c3c;
  font-weight: bold;
}
