/* style.css */

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #e9f3ff 0%, #ffffff 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
  position: relative;
}

/* Background shapes */
body::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(0, 123, 255, 0.08);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  z-index: 0;
}
body::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(0, 123, 255, 0.05);
  border-radius: 50%;
  bottom: -80px;
  right: -60px;
  z-index: 0;
}

.container {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  width: 100%;
  z-index: 1;
  position: relative;
}

h2 {
  text-align: center;
  color: #0056b3;
  margin-bottom: 25px;
  font-weight: 600;
}

label {
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  color: #333;
}

input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  transition: border 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #007bff;
  outline: none;
}

button {
  background-color: #007bff;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

.row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.row > div {
  flex: 1;
}
