/* @import-normalize; */

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

/* Loader CSS */
.dfx-loader-container {
  margin: 15px auto;
  text-align: center;
}

.dfx-loader-message {
  font-size: 15px;
}

.dfx-loader {
  position: relative;
  width: 70px;
  height: 70px;
  display: inline-block;
  border-radius: 50%;
  background: no-repeat center/65% rgb(16, 34, 70) url('./assets/icon.png');
}

.dfx-loader:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, .5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
  animation: ripple 2s linear 1s infinite;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1;
  }
  20% {
    transform: scale(25, 25);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(40, 40);
  }
}
/* Component CSS */
.login__signup:hover {
  text-decoration: underline !important;
}

.login__main {
  padding-top: 150px;
  min-height: calc(100vh - 150px);
  background-attachment: fixed;
}