﻿* {
}

@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

body {
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    background-color:hsla(186,73%,44%,1);
    background-image:
    radial-gradient(at 77% 17%, hsla(185,100%,85%,1) 0px, transparent 50%),
    radial-gradient(at 81% 86%, hsla(175,100%,85%,1) 0px, transparent 50%),
    radial-gradient(at 14% 25%, hsla(198,100%,85%,1) 0px, transparent 50%),
    radial-gradient(at 56% 36%, hsla(185,100%,85%,1) 0px, transparent 50%),
    radial-gradient(at 82% 61%, hsla(2,100%,85%,1) 0px, transparent 50%),
    radial-gradient(at 21% 83%, hsla(185,100%,85%,1) 0px, transparent 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Set padding to keep content from hitting the edges */
.loader-box {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.15);
    padding: 50px 40px;
    text-align: center;
    max-width: 400px;
    color: #333333;
    font-family: 'Lato', sans-serif;
    
}
h2 {
    margin-top: 25px;
    margin-bottom: 15px;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #1EB1C0;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #1EB1C0 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
  

