.form-switch .form-check-input {
  border-radius: 100px;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.messages {
  position: fixed;
  z-index: 1000;
  bottom: 20px;
  right: 20px;
}
.messages .alert.message {
  animation-name: fade-in;
  animation-duration: 0.3s;
  animation-timing-function: ease-in;
}

html,
body {
  min-height: 100vh;
  width: 100vw;
  margin: 0;
}

.small-container {
  display: flex;
  background-color: #f7f9fc;
}
.small-container .small-page {
  margin: auto;
  padding: 40px;
  max-width: 500px;
}
.small-container .small-content {
  border-radius: 15px;
  background: white;
  position: relative;
  padding: 20px;
  border: 1px solid #ddd;
}
.small-container .languages {
  position: fixed;
  top: 5px;
  right: 5px;
}
@media (min-width: 576px) {
  .small-container .languages {
    top: 20px;
    right: 20px;
  }
}
.small-container .logo-tagline {
  width: 100%;
}

.invalid-feedback {
  display: block;
}
