/*#region Fonts*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");

/*#endregion*/

/*#region General*/

* {
  margin: 0;
  box-sizing: border-box;
}

body{
  font-family: "Open Sans", sans-serif;
  color: white;
  min-height: 100vh;
  padding-bottom: 80px;
  background-color: black;
}

page{
  min-height: 100vh;
  position: relative;
}

#content-wrap{
  padding-bottom: 80px;
  min-height: 100vh;
  background-color: #383838;
}

/*#endregion*/

/*#region Contact-form Content*/

#contact {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-box {
  width: clamp(100px, 90%, 1000px);
  margin: 40px 50px;
  display: flex;
  flex-wrap: wrap;
}

.contact-links,
.contact-form-wrapper {
  width: 50%;
  padding: 8% 5% 5% 5%;
}

.contact-links {
  background-color: black;
  background: radial-gradient(
      circle at 55% 92%,
      #c76215 0 12%,
      transparent 12.2%
    ),
    radial-gradient(circle at 94% 72%, #e67119 0 10%, transparent 10.2%),
    radial-gradient(
      circle at 20% max(78%, 350px),
      #a85212 0 7%,
      transparent 7.2%
    ),
    radial-gradient(circle at 0% 0%, #89430f 0 40%, transparent 40.2%), black;
  border-radius: 10px 0 0 10px;
  border-top: #f2771a solid 2px;
  border-left: #f2771a solid 2px;
  border-bottom: #f2771a solid 2px;
  opacity: 0.8;
}

.contact-form-wrapper {
  background-color: #505050;
  border-radius: 0 10px 10px 0;
  border-top: #f2771a solid 2px;
  border-right: #f2771a solid 2px;
  border-bottom: #f2771a solid 2px;
}

h2 {
  font-family: "Arimo", sans-serif;
  color: white;
  font-size: clamp(30px, 6vw, 60px);
  letter-spacing: 2px;
  text-align: center;
  transform: scale(0.95, 1);
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 50px;
}

.link {
  margin: 10px;
  cursor: pointer;
}


.link-item i{
  width: 45px;
  height: 45px;
  transition: 0.2s;
  user-select: none;
  color: white;
}

.link-item i:hover{
  transform: scale(1.1, 1.1);
}


.form-item {
  position: relative;
}

label,
input,
textarea {
  font-family: "Poppins", sans-serif;
}

label {
  position: absolute;
  top: 10px;
  left: 2%;
  color: white;
  font-size: clamp(14px, 1.5vw, 18px);
  pointer-events: none;
  user-select: none;
}

input,
textarea {
  width: 100%;
  outline: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 12px;
  font-size: clamp(15px, 1.5vw, 18px);
  background-color: #686868;
}

input:focus + label,
input:valid + label,
textarea:focus + label,
textarea:valid + label {
  font-size: clamp(13px, 1.3vw, 16px);
  color: white;
  top: -20px;
  transition: all 0.225s ease;
}

.submit-btn {
  background-color: #f2771a;
  filter: drop-shadow(2px 2px 3px #0003);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 1.6vw, 18px);
  display: block;
  padding: 12px 20px;
  margin: 2px auto;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  transition: 0.2s;
}

.submit-btn:hover {
  transform: scale(1.1, 1.1);
}

.submit-btn:active {
  transform: scale(1.1, 1.1);
  filter: sepia(0.5);
}

#privacyPolicyLink{
  text-decoration: none !important;
  color:#f2771a  !important;
}

#privacyPolicyLink:hover{
  color: white  !important;
}

#privacyPolicyCheck{
  accent-color: #f2771a;
}

/*#endregion*/

/*#region Media Breakpoint*/

@media only screen and (max-width: 800px) {
  .contact-links,
  .contact-form-wrapper {
    width: 100%;
  }

  .contact-links {
    border-radius: 10px 10px 0 0;
    border-bottom: #f2771a solid 0px;
    border-right: #f2771a solid 2px;
  }

  .contact-form-wrapper {
    border-radius: 0 0 10px 10px;
    border-top: #f2771a solid 0px;
    border-left: #f2771a solid 2px;
  }
}

@media only screen and (max-width: 400px) {
  .contact-box {
    width: 95%;
    margin: 8% 5%;
  }
}

@media only screen and (max-width: 800px) {
  h2 {
    font-size: clamp(40px, 10vw, 60px);
  }
}

@media only screen and (max-width: 400px) {
  h2 {
    font-size: clamp(30px, 12vw, 60px);
  }

  .links {
    padding-top: 30px;
  }

  img {
    width: 38px;
    height: 38px;
  }
}

/*#endregion*/

/* Original code/inspiration: Copyright (c) 2022 by Alina (https://codepen.io/lina994/pen/zYdbwBP) */