body {
  font-family: 'Segoe UI', sans-serif;
  background: #fafafa;
  padding: 2rem;
  
    
}

form {

  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(to right, #b6b6b6, #eeeeee);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.form-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 1rem;
}

label {
  font-weight: bold;
  color: #333;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

textarea {
  resize: vertical;
}

button[type="submit"] {
  background: #168aad;
  color: white;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background: #126782;
}

/*  */

.domain-card {
  max-width: 600px;
  margin: 1rem auto;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  background: linear-gradient(to right, #bebebe, #f8f9fa);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  text-align: center;
  border: 1px solid #eaeaea;
}

.domain-card h1 {
  font-size: 26px;
  font-weight: 300;
  color: #202020;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  position: relative;
  padding-bottom: 0.5rem;
}

.domain-card h1:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -30px;
  width: 60px;
  height: 3px;
  background-color: #dfdfdf;
  border-radius: 2px;
}

.domain-card h1 span {
  display: block;
  margin-top: 10px;
  font-size: 0.85em;
  font-style: italic;
  font-weight: normal;
  font-family: "Playfair Display", "Bookman", serif;
  color: #888;
  letter-spacing: 0;
}
