.alert-messages {
    z-index: 50;
    position: relative;
    padding: 20px 50px;
    background-color: white;
    text-align: center;
    border-radius: 30px;
    font-size: 30px;
    display: inline-block;
}

#create-account > form {
    display: flex;
    width: 100%;
}
#create-account > form input[type='checkbox'] {
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.summary-page td {
    border: solid 1px #ccc;
    padding: 5px;
}

.summary-page .summary-inner a {
     text-decoration: underline;
 }

.text-shadow {
    /*text-shadow: black 0px 0px 5px;*/
}

.text-shadow {
    text-shadow: 1px 1px 0 #666, -1px 1px 0 #666, -1px -1px 0 #666, 1px -1px 0 #666;
}

nav.full-nav {
    background-color: rgba(0,0,0,0.2);
    margin-left: -5rem;
    margin-right: -5rem;
    padding: 1rem 5rem!important;
}

.columns {
    column-count: 2;
}

.columns > * {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}

p a {
    color: black;
}

.justify-end {
    justify-content: flex-end;
}


@media (max-width:640px) {
    .columns {
        column-count: 1;
    }
    #create-account > form {
        flex-direction: column;
    }
}