/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;

}

body {
  background: linear-gradient(145deg, rgba(0, 175, 234, 255) 0%, rgba(109, 224, 148, 255) 100%) !important;
  min-height: 100vh;
}


.home {
  max-height: 30px;
  margin-top: 15px;
}

::selection {
  color: #fff;
  background: #0D6EFD;
}

.wrapper {
  margin-top: 3% !important;
  margin: auto;
  width: 715px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}

.wrapper header {
  font-size: 22px;
  padding: 20px 30px;
  border-bottom: 1px solid #ccc;
}

.wrapper form {
  margin: 35px 30px;
}

form .dbl-field {
  display: flex;
  margin-bottom: 25px;
  justify-content: space-between;
}

.dbl-field .field {
  height: 50px;
  display: flex;
  position: relative;
  width: calc(100% / 2 - 13px);
}

.wrapper form.disabled {
  pointer-events: none;
  opacity: 0.7;
}



.wrapper form i {
  position: absolute;
  top: 50%;
  left: 18px;
  color: #ccc;
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}

form .field input,
form .message textarea {
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 18px 0 48px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.field input::placeholder,
.message textarea::placeholder {
  color: #ccc;
}

.field input:focus,
.message textarea:focus {
  padding-left: 47px;
  border: 2px solid whitesmoke;
}

.field input:focus~i,
.message textarea:focus~i {
  color: whitesmoke;
}

form .message {
  position: relative;
}

form .message i {
  top: 30px;
  font-size: 20px;
}

form .message textarea {
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 15px 20px 0 48px;
}

form .message textarea::-webkit-scrollbar {
  width: 0px;
}

.message textarea:focus {
  padding-top: 14px;
}

form .button-area {
  margin: 25px 0;
  display: flex;
  align-items: center;
}

.button-area button {
  color: #fff;
  border: none;
  outline: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: linear-gradient(145deg, rgba(0, 175, 234, 255) 0%, rgba(109, 224, 148, 255) 100%);
  transition: background 0.3s ease;
}

.button-area button:hover {
  background: whitesmoke;
}

.button-area span {
  font-size: 17px;
  margin-left: 30px;
  display: none;
}

@media (max-width: 600px) {
  .wrapper header {
    text-align: center;
  }

  .wrapper form {
    margin: 35px 20px;
  }



  form .message textarea {
    resize: none;
  }

  form .button-area {
    margin-top: 20px;
    flex-direction: column;
  }

  .button-area button {
    width: 100%;
    padding: 11px 0;
    font-size: 16px;
  }

  .button-area span {
    margin: 20px 0 0;
    text-align: center;
  }
}

.container-fluid {
  max-width: 1200px;
  height: 60vh;
  display: grid;
}

#result {
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
}

.square-btn {
  width: 200px;
  height: 200px;
  font-size: 18px;
  white-space: normal;
  word-wrap: break-word;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.centered-content {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.social-icons li {
  display: inline-flex;
  text-decoration: none;
}

footer .right-text-content ul li a {
  width: 32px;
  height: 32px;
  display: inline-block;
  text-align: center;
  line-height: 32px;
  font-size: 14px;
  background-color: #fff;
  border-radius: 50%;
  color: #6ee195;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.nav {
  display: block !important;
}

.logo {
  float: left;
}

.home {
  float: right;
}

footer {
  width: 100%;
  bottom: 0;
  position: fixed;
}

.right-text-content {
  float: inline-end;
}

h2,
p,
#result {
  color: aliceblue;
}


@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 992px) {}

@media only screen and (max-width: 768px) {

  form .dbl-field {
    display: block;
  }

  .dbl-field .field {
    margin-bottom: 25px;
    width: 100%;
  }

  .square-btn {
    margin-bottom: 20px !important;
    width: 260px;
    height: 100px;
  }

  .wrapper {

    width: 100%;
  }

  #result {
    margin-top: -65px;
    font-size: 18px;
  }
}

@media only screen and (max-width: 600px) {
  form .dbl-field {
    display: block;
  }

  .dbl-field .field {
    margin-bottom: 25px;
    width: 100%;
  }

  .square-btn {
    margin-bottom: 20px !important;
    width: 260px;
    height: 85px;
    font-size: 15px;
  }

  .wrapper {

    width: 100%;
  }

  #result {
    margin-top: -20px;
    font-size: 18px;
  }
}

@media only screen and (max-width: 480px) {
  form .dbl-field {
    display: block;
  }

  .dbl-field .field {
    margin-bottom: 25px;
    width: 100%;
  }

  .square-btn {
    margin-bottom: 20px !important;
    width: 260px;
    height: 85px;
    font-size: 15px;
  }

  .wrapper {

    width: 100%;
  }

  #result {
    margin-top: -20px;
    font-size: 18px;
  }

}