/*.contact-row{
    display: flex;
    width: 100%;
    height: 100vh;
    background: rgba(3,3,20);
}

.col1 .col2 {
    flex-basis: 50%;
    height: 100%;
    width: 100%;
}

.col1 img {
    width: 100%;
    height: 380px;
    margin: 20vh 20%;
    border-radius: 10px;
    box-shadow: 
    
}

form{
    position: relative;
    min-width: 370px;
    min-height: 370px;
    border: 3px solid rgba(3,3,20);
    box-shadow: 0 0 10px #ff056d;
    margin: 20vh 20%;
    border-radius: 10px;
}
form h2{
    text-transform: uppercase;
    color: #fff;
    padding: 5px 10px;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    align-items: center;
    border-bottom: 4px solid #ff056d;
    margin: 20px 25%;
    border-radius: 10px;
    opacity: 0.7;
}
form input {
    width: 400px;
    height: 40px;
    background: transparent;
    padding: 10px;
    margin: 5px 20px;
    border-radius: 10px;
    border: 0px;
    border-bottom: 4px solid #ff056d;
    outline: none;
    color: #fff;
}

form input.submit {
    width: fit-content;
    color: #fff;
    opacity: 0.7;
    padding: 4px 7px;
    font-size: 15px;
    margin: 5px 40%;
    border-bottom: 4px solid #ff056d;
    text-transform: uppercase;
    transition: 0.2s;
}

form input.submit:hover{
    background: #ff056d;
    transition: 0.2s;
}

@media (max-width: 680px){
    .contact-row{
        width: 100%;
    }
.col1 .col2 {
    height: 100%;
    width: 100%;
    }
    
    .col1 img {
    width:100%
    height: 380px;
    border-radius: 10px;
    box-shadow: 
    }
}
}*/

/* Style inputs */
input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

/* Style the container/contact section */
.container-contact {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 100px;
}

/* Create two columns that float next to eachother */
.column2 {
  float: left;
  width: 40%;
  margin-top: 6px;
  padding: 4px;
}

/* Clear floats after the columns */
.row2:after {
  content: "";
  display: table;
  clear: both;
}

/* 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) {
  .column2, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}
