.form-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

		@media screen and (max-width: 1280px) {

            .form {
                 width: 10vw;
            }

		}

		@media screen and (max-width: 980px) {

			.container {
				width: 100% !important;
			}

		}

label {
    color: black;
}

form {
  margin: 40px auto;

  padding: 30px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: Arial, Helvetica, sans-serif;
}

form input,
form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid gray;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.25s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #4a7afc;
  box-shadow: 0 0 0 3px rgba(74,122,252,0.15);
}

form textarea {
  min-height: 140px;
  resize: vertical;
}

form button {
  padding: 14px 16px;
  background: #4a7afc;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.1s ease;
}

form button:hover {
  background: #3c67d8;
}

form button:active {
  transform: scale(0.97);
}