body {
    overflow-y: scroll;
    margin: 0;
    font-family: roboto;
}

a {
    text-decoration: none;
}

.container-mobile { display: none; }

.container-desktop {
    background: #006064;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.backgroundTop {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 58.67768595%;
    background: linear-gradient(35deg, #192D56 0%, #2E6574 25%, #398D86 50%, #57B896 75%, #98D38C 88%, #FCFB73 100%);
    color: #ffffff;
}

.backgroundBottom {
    position: absolute;
    bottom: 0px;
    top: 58.67768595%;
    left: 0px;
    right: 0px;
    background: #ffffff;
}

.logoContainer {
    flex-grow: 1;
    padding-top: 48px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.formWrapper {
    background: #ffffff;
    height: 456px;
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: width 200ms ease-in-out;
    box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.25);
    max-width: 850px;
    margin: 20px;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    text-align: center;
    color: #525862;
}

.header {
    margin-bottom: 24px;
    font-size: 24px;
}
p {
    margin: 0 0 24px 0;
}

.button {
    width: 40%;
    font-size: 18px;
    margin: 4px;
    -webkit-appearance: none;
    font-family: roboto;
    border-color: transparent;
    border-width: 2px;
    border-style: solid;
    padding: 9px;
    display: inline-block;
    white-space: nowrap;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    position: relative;
    border-color: #1d222a;
    background-color: #1d222a;
    color: #ffffff;
    text-transform: uppercase;
}

.button:hover {
    cursor: pointer;
}

.button-icon {
    margin-right: 8px;
    color: #ffffff;
    vertical-align: middle;
}

.appIconsContainer {
    flex-grow: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.appIcons { padding: 38px; }

.appIconsLink{
    font-weight: 700;
    font-size: 18px;
    color: #4d4e4c;
    text-decoration: none;
}

.appIconsLink:first-child {
    margin-right: 56px;
}

.appIconsLink:hover { text-decoration: underline; }

.appIcon {
    vertical-align: top;
    margin-right: 12px;
}

.footer {
    position: relative;
    width: 100%;
    font-size: 12px;
    justify-content: space-between;
}

.footerLinks {
    margin-left: 10px;
    align-self: flex-start;
    position: absolute;
    left: 32px;
    bottom: 32px;
}

.footerLink {
    margin-right: 8px;
    color: #1d222a;
}

.socialIcons {
    margin-right: 10px;
    color: #fb2979;
    position: absolute;
    right: 32px;
    bottom: 32px;
}

.socialIcons:hover { color: #fb297990; }

.tagline {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 0px;
}

@media screen and (max-width: 767px) {
    .formWrapper {  width: 100% }

    .appIconsLink:first-child { margin-right: 30px; }

    .container-desktop { display: none; }

    .container-mobile {
        display: flex;
        flex: 1;
        flex-direction: column;
        min-height: 100vh;
        padding: 40px;
		color: #ffffff;
		text-align: center;
        background: linear-gradient(35deg, #192D56 0%, #2E6574 25%, #398D86 50%, #57B896 75%, #98D38C 88%, #FCFB73 100%);
    }

    .logoContainer-mobile {
        align-self: center;
        margin-top: 88px
    }


    .mb-default { margin-bottom: 24px; }

    .button {
        align-self: center;
        /*width: 296px;*/
        width: auto;
    }

    .bottomWorld {
        position: absolute;
        bottom: 0px;
        left: 50%;
        height: 63px;
        width: 298px;
        margin-left: -148px;
    }

    .tagline { margin-bottom: 32px; }
}