@import url("https://fonts.googleapis.com/css2?family=Tahoma:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

input,
textarea {
  box-sizing: border-box;
}

body {
  font-family: "Tahoma", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  width: 100%;
  min-height: 100vh;
  /*background: linear-gradient(45deg, #F2E4D7, #F2E4D7);*/
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background-size: contain;
  /*width: 100%;*/
  max-width: 1000px;
  box-shadow: 4px 4px 8px 0 rgba(34, 60, 80, 0.2);
}

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F2E4D7;
  padding: 40px;
  border-radius: 5px;
  background-image: url(/Image/fone2.png), url(/Image/logo.png);
  background-size: 350px, 250px;
  background-repeat: no-repeat;
  background-position: left bottom, left top;
  background-origin: border-box, content-box;
}

.left-side {
  width: 25%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 70px;
}

.left-side::before {
  content: "";
  height: 70%;
  width: 2px;
  background: #afafb6;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  visibility: none;
}

.right-side {
  width: 75%;
  margin-left: 75px;
}

.details {
  margin-bottom: 15px;
  text-align: left;
}

.details i {
  font-size: 25px;
  color: #800046;
  margin-bottom: 10px;
}

.topic {
  font-size: 18px;
  font-weight: 500;
  color: #800046;
}

.text-one,
.text-two {
  font-size: 15px;
}

.topic-text {
  font-size: 23px;
  font-weight: 600;
  color: #800046;
  margin-bottom: 10px;
}

.right-side p {
  margin-bottom: 20px;
}

.input-box {
  height: 50px;
  width: 100%;
  margin-bottom: 30px;
}

.input-box input[type="text"],
.input-box textarea {
  height: 100%;
  width: 100%;
  border: none;
  border-radius: 5px;
  background: #f0f1f8;
  padding: 0 20px;
  margin-bottom: 2px;
}

.input-box label {
  font-size: 14px;
  color: #afafb6;
  padding-left: 5px;
}

.input-box textarea {
  resize: none;
  padding: 20px;
  font-family: "Tahoma", sans-serif;
}

.message-box {
  min-height: 110px;
}

.button {
  display: inline-block;
  display: flex;
  justify-content: center;
}

.button input[type="submit"] {
  color: #fff;
  font-size: 18px;
  background: #800046;
  outline: none;
  border: none;
  padding: 10px 20px;
  border-radius: 7px;
  transition: 0.2s;
  font-weight: 500;
}

.button input[type="submit"]:hover {
  background-color: #800046;
}

.file-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 30px;
}

.file__field {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

#file {
  display: none;
}

.file__btn {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  background-color: #800046;
  outline: none;
  border: none;
  padding: 10px 20px;
  border-radius: 7px;
  transition: 0.2s;
  cursor: pointer;
}

.file__btn:hover {
  background-color: #800046;
}

.file__info {
  display: flex;
  align-items: center;
  padding: 0 10px;
  margin-left: 10px;
}

.file__name {
  margin-bottom: 4px;
  color: #888;
  font-size: 14px;
  word-spacing: 1px;
  user-select: none;
}

.file__btn-close {
  background: none;
  outline: none;
  border: none;
  font-size: 20px;
  color: #800046;
  margin-left: 5px;
  cursor: pointer;
  padding: 3px;
  font-weight: bold;
}

.file__hint {
  color: #516d7b;
  font-size: 14px;
}

@media (max-width: 800px) {
  .content {
    height: 100%;
	padding-top: 120px;
    flex-direction: column-reverse;
	background-position: left bottom, center 25px;
    background-origin: border-box;
	background-image: url(/Image/site.jpg), url(/Image/logo.png);
    background-size: 100%, 250px;
    }
  }
  
  .left-side {
    margin-top: 50px;
	/*margin-left: 180px;*/
    flex-direction: column;
    width: 70%;
    justify-content: center;
    flex-wrap: wrap;
	margin-bottom: 150px;
  }
  .details {
    margin-right: 20px;
  }
  .details:last-child {
    /*margin-right: 0;*/
  }
  .left-side::before {
    display: none;
  }
  .right-side {
    width: 100%;
    margin-left: 0;
  }
}
