#msg {
	height: 100vh;
	background-image: linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ), url('../img/piano4.jpg');
	background-size: cover;
  	z-index: 0;
  	display: flex;
  	flex-direction: column;
  	justify-content: center;
  	align-items: center;
}

#msg h1{
  color: var(--principal-color);
  font-size: 50px;
  align-self: center;
}

#msg h1 span{
  color: white;
}

.form-contato {
	width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

input[type=text], textarea {
  width: 100%;
  background-color: rgba(255,255,255,0.7);
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

select {
  width: 106%;
  background-color: rgba(255,255,255,0.7);
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
  color: var(--principal-color);
}

input[type=submit] {
  background-color: var(--principal-color);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.container {
  width: 600px;
  border-radius: 5px;
  padding: 20px;
}

.container form{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

.row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}


@media only screen and (max-width: 590px) { 

  #msg {
    height: auto;
    width: 100vw;
  }

  #msg h1{
    color: var(--principal-color);
    font-size: 30px;
    align-self: center;
  }

  .form-contato {
    width: 90%;
  }

  .container {
    width: 100%;
    padding: 0px;
  }

  .row{
    margin-bottom: 10px;
  }

  .row input, #country, #subject{
    width: 95%;
  }  

}