/* Poppins Google Font */
@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");

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

/* Images Reset */
main .right > img {
  display: block;
  width: 100%;
}

body {
  font-family: "Poppins", sans-serif;
}

.header {
  width: 100%;
  margin: 0 auto;
  padding: 1em 1.5em;
  background-color: #3b28cc;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .social-links i {
  color: #fff;
  display: inline-block;
  margin: 0 0.15em;
  font-size: 1.2em;
}

.container {
  width: 100%;
  padding: 2em;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
}

.container > div {
  padding: 1em;
}

.container .form-control {
  margin: 1em 0;
  display: flex;
  flex-direction: column;
}

.form-control > input,
.form-control > select,
.form-control > button {
  padding: 0.8em 1em;
}
.form-control > input:focus {
  outline: none;
}
.form-control > button {
  background-color: #3b28cc;
  color: white;
  border: none;
  border-radius: 0.2em;
  font-family: "Poppins", sans-serif;
  font-weight: semibold;
  cursor: pointer;
}

.btn {
  display: block;
  width: 100%;
  text-decoration: none;
  text-align: center;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  background-color: #3b28cc;
  color: white;
  border: none;
  border-radius: 0.2em;
  cursor: pointer;
  margin: 1em 0;
  padding: 0.5em 1em;
}

.form-control > button:hover,
.btn:hover {
  background-color: #f17300;
}

.spinner {
  max-width: 150px;
}

/* media query */
@media (min-width: 200px) {
  .right > img {
    width: 200px;
  }
}
@media (min-width: 700px) {
  .right > img {
    width: 300px;
  }
  .container {
    flex-direction: row;
  }
}
