/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #e9eff5, #f7f9fb);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  background: #ffffff;
  padding: 40px 30px;
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}



/* Add or update inside your existing style.css */




input,
textarea,
select,
button {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #007bff;
  background-color: #f0f8ff;
}

button {
  background-color: #007bff;
  color: #fff;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

.text-center {
  text-align: center;
}

.links a {
  display: inline-block;
  margin: 5px 10px;
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}

.card h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #007bff;
  font-size: 26px;
  font-weight: 600;
}
