html,
body {
  overflow-x: hidden;
}
@font-face {
  font-family: "AvertaPE";
  src: url(./fonts/AvertaPE-Regular.otf);
}

body {
  background-color: #f5f5f5;
  font-family: "AvertaPE" !important;
}

.ticket-type {
  padding: 20px;
}

.ticket-type:hover {
  background-color: #fdf6f6;
}

.login-page,
.signup-page,
.password-reset,
.password-new {
  background: transparent
    linear-gradient(135deg, #430075 0%, #683bb2 19%, #74daab 100%) 0% 0%
    no-repeat padding-box;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-x: hidden;
}

.form-control {
  height: 50px;
  box-shadow: 0px 5px 10px #00000029;
  border: 1px solid #707070;
  border-radius: 10px;
}

.btn-primary {
  width: 170px;
  height: 50px;
  background-color: #ff6a6c;
  border-radius: 5px;
  font-size: 20px;
  text-transform: uppercase;
  border-color: #ff6a6c;
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.btn-primary:hover {
  background-color: #bf4e50;
  border-color: #bf4e50;
  transform: scale(0.95);
  border-radius: 15px;
}

.navbar-brand-user {
  position: fixed;
  top: 40px;
  left: 40px;
  width: 450px;
  display: flex;
}
.help-block {
  color: #f0c0c0;
  margin-bottom: 30px;
}

.missing-field {
  animation: shake 1s ease-in-out;
}

.missing-field input::placeholder {
  color: #ff6a6de8;
}
.missing-field input::-webkit-input-placeholder {
  color: #ff6a6de8;
}

.missing-field input,
.missing-field select {
  background-image: url(../images/exclamation-mark.png);
  background-repeat: no-repeat;
  background-position: 97% center;
  background-size: 35px;
}

/* Loader styling */

#loader {
  height: 100vh;
  width: 100vw;
  background-color: #00000059;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loader img {
  animation: rotateLoader 1.5s ease-in-out infinite;
}
/* import other css files */

@import url(navigation.css);
@import url(ticket-details.css);
@import url(tickets.css);
@import url(welcome.css);

@keyframes rotateLoader {
  0%,
  100% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(360deg);
  }
}

@keyframes shake {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    transform: rotate(0);
  }
  10%,
  50%,
  90% {
    transform: rotate(-1deg);
  }
  30%,
  70% {
    transform: rotate(1deg);
  }
}
