﻿.registrationHeading
{
    padding: 5px;
    border-radius: 5px;
}

.registrationPanel
{
    font-size: 2vmin;
}

.validationError
{
    font-weight: bold;
    color: Red;
    font-size: 18px;
}

.completeBelow
{
    font-size: 18px;
}

.completeBelow ol
{
    margin-left: 30px;
    font-size: 14px;
}


.bg-info
{
    padding: 20px;
    padding-top: 5px;
    margin-top: 5px;
    border-radius: 5px;
}


/* Register Button */
.registerButton
{
    width: 100%;
    font-weight: bold;
}

.emailMessage
{
    padding: 20px;
    font-size: 3vmin;
    background-color: #D5D2CA;
    color: #631D76;
    font-weight: bold;
}

.multiplePresses
{
    padding: 20px;
    font-size: 3vmin;
    color: White;
    background-color:#97233F;
    font-weight: bold;
}

.lateApplications
{
    font-weight: bold;
    margin: 10px;
    padding: 10px;
    color:White;
    background: purple;
}

/* Small devices (tablets, 768px and up) */
@media (max-width: 991px) 
{
    .page
    {
        width: 100%;
    }
    
    .registrationPanel
    {
        font-size: 4vmin;
    }
    
    .instructions
    {
        font-size: 3vmin;
    }
}

.overlay
{
    z-index: 98;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: gray;
    top: 0;
    left: 0;
    background: rgba(64, 64, 64, 0.5);
}
.pleaseWait
{
    z-index: 99;
    position: absolute;
    width: 20%;
    left: 40%;
    height: 20%;
    top: 300px;
    border-radius: 5px;
    border: 5px solid #337ab7;
    text-align: center;
    background-color: white;
    padding-top: 30px;
    font-size: 30px;

}

@media (max-width: 991px) 
{
    .overlay
    {
        z-index: 98;
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: gray;
        top: 0;
        left: 0;
        background: rgba(64, 64, 64, 0.5);
    }


    .pleaseWait
    {
        z-index: 99;
        position: absolute;
        top: 20%;
        width: 100%;
        left: 0;
        height: 50%;
        border-radius: 5px;
        border: 5px solid #337ab7;
        text-align: center;
        background-color: white;
        padding-top: 30px;

    }
}

@media (max-width: 991px) and (orientation: landscape)
{
    .noLandscape
    {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
        background: rgba(64, 64, 64, 0.8);
        visibility:visible;
        width: 100%;
        height: 100%;
        text-align: center;
        padding-top: 50px;
        padding-left: 50px;
        padding-right: 50px;
    }

    .noLandscape div
    {
        font-size: 30px;
        font-weight: bold;
        background-color: white;
        padding: 10px;
    }

}