@import url(https://fonts.googleapis.com/css?family=Lato:100,300,400);

/* Base styles */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  color: red; /* Set input text color to red */
  width: 100vw;
  height: auto;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  width: 80%;
  margin: 0 auto;
}
form {
  width: 50%;
}

img {
  display: block;
  width: 5vw;
  margin: 60px;
}

/* Form styles */
label,
input,
textarea {
  display: block;
  font-family: inherit; /* Inherits from body */
  font-size: 1vw;
  text-transform: uppercase;
  width: 100%;
}

label {
  color: #a1a1a1; /* Set label color */
}

input,
textarea {
  border: none;
  color: #232323;
  border-bottom: 1px solid #a1a1a1;
  font-size: 0.7vw;
}

input:focus {
  color: #232323;
}

textarea {
  height: 100px;
  padding-top: 10px;
  box-sizing: border-box;
}

input[type="button"],
input[type="submit"] {
  background-color: #a1a1a1;
  color: white;
  width: 20%;
  padding: 15px 10px;
  border-radius: 20px;
  cursor: pointer;
  margin: 0 auto;
  margin-top: 30px;
}

input::placeholder,
input[type="date"],
textarea::placeholder {
  color: #d9d9d9; /* Set placeholder color */
  font-size: 0.7vw;
}
