@font-face {
  font-family: 'Quicksand';
  src: url('../../res/fonts/Quicksand.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body{
  font-family: "Quicksand";
  margin: 0;
  padding: 0;  
}

p{
  margin: 0;
}

.div-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.bottom-text{
  height: 30px;
}

.bottom-text p{
  margin: 0px;
}

.invalid-input {
  border-width: 3px;
  border-color: red;
}

.invalid-text{
  color: red;
}

.btn-circle {
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.btn-circle-img {
    width: 45px;    
    height: 45px;
    margin: 25px;
    object-fit: cover;
}

.btn-purple {
  color: #4d148c;
  background-color: transparent;
  background-image: none;
  border-color: #4d148c;
  border-width: 3px;
}

.btn-purple:hover {
  color: #fff;
  background-color: #4d148c;
  border-color: #4d148c;
}

.btn-orange {
  color: #D40511;
  background-color: transparent;
  background-image: none;
  border-color: #D40511;
  border-width: 3px;
}

.btn-orange:hover {
  color: #fff;
  background-color: #D40511;
  border-color: #D40511;
}

.btn-green {
  color: black;
  background-color: transparent;
  background-image: none;
  border-color: #C9DD00;
  border-width: 3px;
}

.btn-green:hover {
  color: #fff;
  background-color: #C9DD00;
  border-color: #C9DD00;
}

.btn-white-orange {
  color: #fff;
  background-color: transparent;
  background-image: none;
  border-color: #fff;
  border-width: 3px;
}

.btn-white-orange:hover {
  color: #D40511;
  background-color: #fff;
  border-color: #fff;
}

.background-container {
  width: 100%;
  height: calc(100vh);  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover;
  position: fixed;
  z-index: -1;
}

.img-full-container {
  width: 100% ;
  height: 100%;
  object-fit: cover;
}

.dashboard-content {
  justify-content: center;
  align-items: center;
  width: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;  
}

.StripeElement {
  background-color: white;
  height: 40px;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
}

.StripeElement--focus {
  box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
  border-color: #fa755a;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}

footer {
  width: 100%;
  padding: 50px ;
  margin: 0;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  text-align: center;
  font-size: 13px;
  color: white;
  position: fixed;
}

.attention{
  animation: shake-horizontal 0.8s ease-in-out backwards;
}

@keyframes shake-horizontal {
  0%,
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  80% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  90% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
}
