/* Body Styling */
body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  font-family: Tahoma, Arial, sans-serif;
  background-color: #f5f5f5;
}

/* Form Container Styling */
.form-container {
  background: linear-gradient(to bottom, #ffffff, #f9f9f9);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
}

/* Caption Styling for "We're building something new" */
.form-container h2 {
  font-size: 20px;
  text-align: center;
  color: #555;
  margin-bottom: 16px;
}

/* Form Header Styling */
.form-container h1 {
  margin-bottom: 24px;
  font-size: 26px;
  text-align: center;
  color: #333;
}

/* Input Group Styling */
.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #444;
  text-align: right;
}

.input-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  direction: rtl;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
}

/* Button Styling */
.form-container button {
  width: 100%;
  padding: 12px;
  background-color: #008080;
  color: #fff;
  font-size: 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-container button:hover {
  background-color: #006666;
}
