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

.container {
    height: 100vh;
    padding: 25px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.logo {
    width: 80px;
    height: auto;
    padding: 5px;
    border-radius: 13px;
    margin-bottom: 15px;
}

form {
    width: 100%;
    padding: 20px;
    max-width: 400px;
    background: white;
    border-radius: 8px;
    border: 1.3px solid #eee;
}

form h2 {
    text-align: center;
    margin-bottom: 15px;
}

form .input-group {
    display: flex;
    grid-row-gap: 15px;
    flex-direction: column;
}

form .input-group div p {
    color: #444444;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 5px;
}

form .input-group div input {
    width: 100%;
    outline: none;
    padding: 14px 10px;
    border-radius: 5px;
    border: 1.5px solid #eee;
}

form .input-group div input:hover {
    border: 1.5px solid #0F62FE;
}

form button {
    width: 100%;
    color: white;
    border: none;
    display: flex;
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    align-items: center;
    border-radius: 6px;
    background: #0F62FE;
    justify-content: center;
}

form .to-register {
    font-size: 13px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1.5px dashed #eee;
}

form .to-register a {
    color: #0F62FE;
    text-decoration: none;
}

.checkbox-wrapper-4 {
    margin-top: 15px;
}

.checkbox-wrapper-4 * {
  color: black;
  font-size: 13px;
}

.checkbox-wrapper-4 .cbx {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  padding: 6px 8px 4px;  
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
  display: inline-block;
}

.checkbox-wrapper-4 .tt {
    margin-top: -1px;
}

.checkbox-wrapper-4 .cbx:not(:last-child) {
  margin-right: 6px;
}

.checkbox-wrapper-4 .cbx:hover {
  background: rgba(0,119,255,0.06);
}

.checkbox-wrapper-4 .cbx span {
  float: left;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-4 .cbx span:first-child {
  position: relative;
  width: 15px;
  height: 15px;
  border-radius: 4px;
  transform: scale(1);  
  border: 1px solid #cccfdb;
  transition: all 0.2s ease;
  box-shadow: 0 1px 1px rgba(0,16,75,0.05);
}

.checkbox-wrapper-4 .cbx span:first-child svg {
  position: absolute;
  top: 5px;  
  left: 2px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-4 .cbx span:last-child {
  padding-left: 8px;
  line-height: 18px;
}

.checkbox-wrapper-4 .cbx:hover span:first-child {
  border-color: #07f;
}

.checkbox-wrapper-4 .inp-cbx {
  position: absolute;
  visibility: hidden;
}

.checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child {
  background: #07f;
  border-color: #07f;
  animation: wave-4 0.4s ease;
}

.checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}

.checkbox-wrapper-4 .inline-svg {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  user-select: none;
}

.spinner {
 --gap: 5px;
 --clr: white;
 --height: 15px;
 width: 100%;
 height: auto;
 display: flex;
 align-items: center;
 justify-content: center;
 gap: var(--gap);
}

.spinner span {
 background: var(--clr);
 width: 4px;
 height: var(--height);
 animation: grow 1s ease-in-out infinite;
}

.spinner span:nth-child(2) {
 animation: grow 1s ease-in-out 0.15s infinite;
}

.spinner span:nth-child(3) {
 animation: grow 1s ease-in-out 0.3s infinite;
}

.spinner span:nth-child(4) {
 animation: grow 1s ease-in-out 0.475s infinite;
}

@keyframes grow {
 0%,100% {
  transform: scaleY(1);
 }

 50% {
  transform: scaleY(1.8);
 }
}

@media screen and (max-width: 640px) {
  .checkbox-wrapper-4 .cbx {
    display: inline-block;
  }
}

@-moz-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

@-webkit-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

@-o-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}

@keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}
