/* assets/css/style.css */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 500px;
  margin: 80px auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #222;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

button {
  width: 100%;
  padding: 14px;
  background-color: #0f5cff;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #003ccf;
}

.link {
  text-align: center;
  margin-top: 16px;
}

a {
  color: #0f5cff;
  text-decoration: none;
  font-weight: 500;
}

.header {
  text-align: center;
  padding: 40px 20px 20px;
}

.header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #0f5cff;
  margin-bottom: 10px;
}

.header p {
  font-size: 18px;
  color: #555;
}
