* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background-image: url("./bckg.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.Buttonloader {
  width: 30px;
  height: 30px;
  border: 0.25rem solid #fff;
  border-bottom: 0.25rem solid transparent !important;
  border-radius: 50%;
  animation: rotate 1s linear infinite;
}

.errorText {
  color: #d21e1e;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.link {
  color: #0043CE !important;
}

.disabledButton {
  background-color: rgba(202, 34, 31, 0.9607843137) !important;
}

.disabledInput {
  background-color: #ececec;
  caret-color: transparent;
}
.disabledInput:hover, .disabledInput:active, .disabledInput:focus {
  outline: 0.08rem solid transparent !important;
  border: none !important;
  cursor: not-allowed;
  caret-color: transparent;
}

h1 {
  font-size: 36px;
  line-height: 1.2em;
  font-weight: 700;
  letter-spacing: 1px;
}

p {
  font-size: 16px;
}

input {
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 400;
  height: 48px;
  width: 100%;
  padding: 10px;
  border: 0.08rem solid #dcdcdc;
}
input:hover, input:active, input:focus {
  outline: none;
  border: 0.08rem solid #000000;
}

button {
  cursor: pointer !important;
  background-color: #F0281E !important;
  color: #fff;
  font-size: 18px;
  line-height: 1.1em;
  font-weight: 500;
  border-radius: 9999px;
  min-height: 56px;
  min-width: 150px;
  padding: 14px 32px;
}
button:hover, button:active, button:focus {
  background-color: #CA221F !important;
}

section {
  background-color: white;
}

#logSec {
  width: clamp(340px, 50%, 430px);
  min-height: 400px;
}/*# sourceMappingURL=index.css.map */