/* fonts linkup */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* CSS variables */
:root {
  --theme-color: #314769;
}

/* Default CSS reseting */
html {
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  padding: 0;
}

/* Reusable content */
main {
  min-height: 100svh;
  background-color: var(--theme-color);
  color: #fff;
  overflow-x: hidden;
  padding-bottom: 50px;
}

.container {
  max-width: 1320px;
  padding: 30px 5%;
  margin-right: auto;
  margin-left: auto;
  text-align: left;

  display: flex;
  justify-content: space-between;
  gap: 100px;
}

.left_side {
  width: 70%;
  overflow: hidden;
}

.right_side {
  width: 30%;
  overflow: hidden;
}

/* actual css */
nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  margin-bottom: 0px;
}

/* content container */

.heading h1 {
  font-size: 50px;
}

.heading h1 {
  font-weight: 200;
}

.heading span {
  font-weight: 500;
  font-style: italic;
}

.right_side p {
  font-size: 30px;
  font-weight: 200;
  font-style: italic;
  margin-bottom: 10px;
}

.rs_icon {
  margin-bottom: 30px;
}

.rs_icon i {
  font-size: 25px;
  color: rgba(255, 255, 255, 0.5);
  width: 70px;
  height: 70px;
  background-color: #363636;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.gi_card {
  padding: 30px 0;
  border-bottom: 1px solid #8b939e;
}

.gi_label {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 300;
  color: #8b939e;
}

.additional {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 200;
  font-style: italic;
  margin-top: 30px;
  display: block;
}

.gi_info {
  font-weight: 300;
  font-size: 30px;
  margin-top: 20px;
}

.left_side h1 {
  font-size: 35px;
  font-weight: 300;
  margin-bottom: 40px;
  font-style: italic;
}

form {
  width: 100%;
}

.input_div {
  margin-bottom: 20px;
}

input {
  width: 97%;
  padding: 10px 0 10px 25px;
  outline: none;
  border: 2px solid transparent;
  background: #363636;
  font-size: 15px;
  color: #fff;
  font-family: "Inter", sans-serif;
}

input:focus {
  border-bottom: 2px solid #8b939e;
}

textarea:focus {
  border-bottom: 2px solid #8b939e;
}

textarea {
  width: 100%;
  padding: 20px;
  resize: none;
  outline: none;
  border: 1px solid transparent;
  background: #363636;
  font-size: 15px;
  color: #fff;
  font-family: "Inter", sans-serif;
}

input::placeholder,
textarea::placeholder {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.file {
  margin-top: 30px;
}

.file label {
  color: #8b939e;
  font-size: 16px;
  cursor: pointer;
}

.file label i {
  color: #fff;
  font-size: 30px;
  margin-right: 10px;
}

.button_div {
  margin-top: 60px;
}

.button_div input {
  padding: 0;
  text-transform: capitalize;
}

.button_div .btn {
  width: 180px;
  height: 55px;
  background-color: #363636;
  border: none;
  outline: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.button_div .btn:hover {
  transform: translateX(15px);
}

.thanks {
  background-color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
  height: 100svh;
  color: #fff;
  padding: 5%;
}

.thanks h1 {
  font-size: 50px;
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
}

.thanks button {
  background-color: #363636;
  color: #fff;
  border: none;
  outline: none;
  padding: 20px;
  font-size: 15px;
  border-radius: 10px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  cursor: pointer;
}

@media screen and (min-width: 1850px) {
  .container {
    max-width: 1636px;
  }
  textarea {
    width: 95.5%;
  }
}

@media screen and (max-width: 1400px) {
  .left_side {
    width: 60%;
  }

  .right_side {
    width: 40%;
  }

  .gi_info {
    font-size: 25px;
  }

  .gi_label {
    font-size: 17px;
  }
}

@media screen and (max-width: 668px) {
  .container {
    flex-direction: column-reverse;
  }

  .left_side {
    width: 100%;
  }

  .right_side {
    width: 100%;
  }

  nav {
    margin-bottom: 0;
  }

  .heading h1,
  .heading h2,
  .heading h3 {
    font-size: 30px;
  }

  .gi_info {
    font-size: 20px;
  }

  .gi_label {
    font-size: 15px;
  }

  input,
  textarea {
    padding: 15px 0 15px 15px;
    font-size: 14px;
    width: 100%;
  }

  input::placeholder,
  textarea::placeholder {
    font-size: 14px;
  }

  .button_div .btn {
    width: 140px;
    height: 45px;
    font-size: 14px;
    font-weight: 400;
  }

  .right_side p {
    text-align: center;
    font-size: 25px;
  }

  .rs_icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .left_side h1 {
    font-size: 25px;
    text-align: center;
  }

  .file {
    text-align: center;
  }

  .button_div {
    margin-top: 30px;
    text-align: center;
  }

  .thanks h1 {
    font-size: 30px;
    text-align: center;
  }

  .thanks button {
    padding: 15px;
    font-size: 12px !important;
    font-weight: 400;
  }
}
