@charset "UTF-8";

body {
  background-color: #716e6f0d;
  line-height: 1.45;
  font-family: "Quicksand", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1f1f1f;
  overflow-x: hidden !important;
}

html {
  overflow-x: hidden;
}

a:hover {
  color: #f57d76 !important;
  transition: all 0.3s ease-in;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
  border-left: 4px solid;
  border-radius: 0;
}

/* This only changes this particular animation duration */

.animate__animated.animate__bounce {
  --animate-duration: 2s;
}

/* This changes all the animations globally */

:root {
  --animate-duration: 800ms;
  --animate-delay: 0.9s;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.form-control:focus {
  color: #495057;
  background-color: #fff !important;
  border-color: #80bdff !important;
  outline: 0 !important;
  box-shadow: none !important;
}

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

.signup-classic h2 {
  position: relative;
  padding: 0;
  margin: 0;
  font-family: "Oxygen", sans-serif !important;
  color: #6b5690;
}

.signup-classic img {
  border-radius: 70px;
  height: 30px;
  width: 30px;
  box-shadow: 0 3px 25px rgba(148, 134, 134, 0.2);
}

.signup-classic h2::before {
  position: absolute;
  width: 32%;
  height: 2px;
  content: "";
  background: #6b5690;
  top: 18px;
  left: 0;
}

.signup-classic h2::after {
  position: absolute;
  width: 32%;
  height: 2px;
  content: "";
  background: #6b5690;
  top: 18px;
  right: 0;
}

.signup-classic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 350px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 3px 25px rgba(148, 134, 134, 0.2);
  padding: 30px 12px;
  border-radius: 8px;
  font-family: "Oxygen", sans-serif !important;
}

.form {
  width: 100%;
}

input {
  width: 100%;
  color: #333333;
  padding: 15px 0px 15px 15px;
  border-radius: 5px;
  font-size: 14px;
  outline: none !important;
  border: 1px solid #6b5690;
  vertical-align: top;
  font-family: "Oxygen", sans-serif !important;
}

button {
  width: 100%;
  outline: none !important;
  background: #6b5690;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  padding: 15px 0px 15px 15px;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  color: #fff;
  letter-spacing: 1px;
  border-radius: 5px;
  font-family: "Oxygen", sans-serif !important;
}

button:hover {
  background: #f57d76;
}

fieldset {
  border: none;
  padding: 0;
  margin: 20px 0;
  position: relative;
}

fieldset::after {
  content: "\F007";
  font-family: FontAwesome;
  position: absolute;
  right: 15px;
  top: 12px;
  z-index: 2;
  width: 20px;
  color: #6b5690;
  text-align: center;
}

fieldset.email::after {
  content: "\F0E0";
}

fieldset.password::after {
  content: "\F023";
}

.pt-4 {
  margin-top: 20px;
}

.pt-2 {
  margin-top: 10px;
}

.invalid {
  border: 2px solid #ff3803 !important;
}

.invalid-feedback {
  font-size: 12px;
  color: red;
  float: left;
}

a {
  text-decoration: none;
}

/* Extra small devices (phones, 600px and down) */

@media only screen and (max-width: 600px) {
  .signup-classic {
    width: 250px;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 3px 25px rgba(148, 134, 134, 0.2);
    padding: 20px 8px;
    border-radius: 8px;
    font-family: "Oxygen", sans-serif !important;
  }

  .signup-classic h2 {
    font-size: 16px;
  }
}

