body {
    background: #FFFAF3;
    background-image: radial-gradient(#ebebeb 1.4px, transparent 0);
    background-size: 15px 15px !important;
    background-position: 0px 0px !important;
}

.wrapper {
    overflow: hidden;
    position: relative;
}

.login-form-container {
    max-width: 900px;
}

.login-form {
    min-height: 500px;
}

.corner-image {
    position: absolute;
    width: min(50vw, 250px);
    height: 30vw;
    background-size: auto;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: -1;
}

.top-left {
    top: 0;
    left: 0;
    background-position: top left;
    background-image: url('../img/left_top.svg');
}

.top-right {
    top: 0;
    right: 0;
    background-position: top right;
    background-image: url('../img/right_top.svg');
}

.bottom-left {
    bottom: 0;
    left: 0;
    background-position: bottom left;
    background-image: url('../img/left_bottom.svg');
}

.bottom-right {
    bottom: 0;
    right: 0;
    background-position: bottom right;
    background-image: url('../img/right_bottom.svg');
}

footer {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}

#verificationCode .code-digit {
  display: block;
  height: 50px;
  width: 50px;
  margin-right: 0.5rem;
  margin-top: 0;
  margin-bottom: 0.25rem;
  text-align: center;
  font-size: 1.5rem;
  border: 0;
  border-bottom: 3px solid var(--bs-border-color);
}

#verificationCode ::placeholder {
  color: var(--bs-border-color);
  opacity: 1; /* Firefox */
}

#verificationCode ::-ms-input-placeholder { /* Edge 12 -18 */
  color: var(--bs-border-color);
}

#verificationCode .code-digit:last-child {
  margin-right: 0;
}