.form-container {
  background: white;
  border-radius: 8px;
  width: 350px;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-field {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
}

.input-field:focus {
  border-color: #4285f4;
}

.input-label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #999;
  background: white;
  padding: 0 4px;
  transition: 0.3s;
  pointer-events: none;
}

.input-field:focus+.input-label,
.input-field:not(:placeholder-shown)+.input-label {
  top: 5px;
  font-size: 12px;
  color: #4285f4;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  background: #4285f4;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #357ae8;
}