html,
body,
* {
    margin: 0px;
    padding: 0px;
}

.fullvh {
    height: 100svh;
    background: linear-gradient(-20deg, #115173 50%, #053f5e 50%);
    position: relative;
}
.innerfull {
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: linear-gradient(50deg, #022c43 50%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    text-align: center;
    font-family: Tahoma, sans-serif;
}

.preface {
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: bold;
}

.huge {
    display: inline-block;
    font-size: 15rem;
    text-align: center;
    padding: 20px 30px;
}

p {
    font-size: 2rem;
}

.subtitle-wrapper {
    margin-top: 20px;
    font-weight: bold;
    font-size: 3rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.glow {
    box-shadow: 0px 0px 42px #ffd700;
    background-color: rgba(255, 255, 255, 0.3);
    /*animation: glow 1s ease-in-out infinite alternate;*/
}

.formwrapper {
    margin: 30px 0px;
}

.formwrapper input {
    line-height: 1.3;
    padding: 10px 20px;
    font-size: 1rem;
    text-align: center;
    background-color: #053f5e;
    border: 1px solid #115173;
    border-radius: 1.3rem;
    color: white;
}

.formwrapper input[type=email]:focus {
    outline: 0px;
}

.errorClass {
    border: 1px solid red;
    box-shadow: 0px 0px 15px red;
}

.hidden {
    display: none;
}


.formwrapper button {
    border-radius: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    line-height: 1.3;
    padding: 7px 15px;
    color: white;
    background-color: #053f5e;
    border: 1px solid #115173;
    margin-top: 20px;
}

.formwrapper button:hover {
    background-color: #115173;
    border: 1px solid #053f5e;
}


/* Checkmark and its animation */
.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
    width: 51px;
    height: 51px;
    border-radius: 50%;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #7ac142;
  }
}

/* Loader and its animation*/
.loader {
    margin: auto;
    border: 5px solid #EAF0F6;
    border-radius: 50%;
    border-top: 5px solid #115173;
    width: 56px;
    height: 56px;
    animation: spinner 4s linear infinite;
    /*animation-delay: 100ms;*/
}

@keyframes spinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.message {
    font-size: 1.5rem;
    color: white;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 5px 0px;
    text-align: center;
    color: #fff;
}

@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #ffdb1a,
            0 0 40px #ffdb1a, 0 0 50px #ffdb1a, 0 0 60px #ffdb1a,
            0 0 70px #ffdb1a;
    }

    to {
        text-shadow: 0 0 20px #fff, 0 0 30px #ffd700, 0 0 30px #ffd700,
            0 0 40px #ffd700, 0 0 50px #ffd700, 0 0 60px #ffd700,
            0 0 70px #ffd700;
    }
}

@media (max-width: 500px) {
    .huge {
        font-size: 8rem;
    }

    .preface {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .subtitle-wrapper {
        font-size: 2rem;
        margin-top: 15px;
    }
    .message {
        font-size: 1rem;
    }
}
