/** @format */

@font-face {
  font-family: "SourceSansPro_Regular";
  src: url("SourceSansPro-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "SourceSansPro_Bold";
  src: url("SourceSansPro-Bold.ttf");
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #ad855f;
}

h1 {
  text-align: center;
  font-family: "SourceSansPro_Bold";
  color: #31313d;
}

.container {
  float: left;
  width: 70%;
  margin: 0 15% 100px 15%;
  background-color: white;
  display: flex;
}

.container img {
  float: left;
  width: 50%;
}

.form {
  font-family: "SourceSansPro_Regular";
  color: #31313d;
  float: left;
  width: 50%;
  margin: auto;
}

table {
  float: left;
  width: 75%;
  margin: 50px 12.5%;
}

.container p {
  font-size: 20px;
  margin: 50px 12.5% 15px 12.5%;
}

.container a {
  color: #ad855f;
  text-decoration: none;
  transition: 0.3s;
}

.container a:hover {
  color: #ad855f8a;
}

input {
  font-family: "SourceSansPro_Regular";
}

.input {
  float: left;
  width: 75%;
  margin: 20px 12.5%;
  font-size: 25px;
  border: none;
  border-bottom: 3px solid #dadbd6;
  color: #31313d;
  outline: none;
}

#submit {
  font-size: 20px;
  margin: 35px 12.5% 50px;
  float: right;
  border: none;
  background-color: #dadbd6;
  cursor: pointer;
  color: #31313d;
  padding: 20px 75px;
  transition: 0.2s;
}

#submit:hover {
  background-color: #31313d;
  color: #dadbd6;
}

img {
  width: 100%;
}

::placeholder {
  color: #31313d6c;
}
