/* Account and Authorization Form Styles */

/* Authorization Entry Page */
.auth-body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: regular;
    font-weight: normal;
    font-style: normal;
}

.auth-container {
    position: relative;
    top: 20%;
}

.auth-title-cell {
    height: 40px;
}

.auth-title {
    font-weight: bold;
    font-size: 25px;
    font-family: Calibri;
    margin-top: 10px;
    margin-bottom: 15px;
}

.auth-prompt {
    font-size: 16px;
    color: #777777;
    font-family: Calibri;
}

.auth-message {
    color: red;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bolder;
    font-family: Calibri, sans-serif;
}

.auth-input {
    height: 35px;
    text-align: center;
    width: 70%;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 22px;
    font-weight: bold;
    border-radius: 3px;
    color: #4c4c4c;
    padding-left: 6px;
    padding-right: 6px;
}

.auth-submit-btn {
    margin-top: 7px;
    width: 275px;
    height: 30px;
    color: black;
    text-transform: uppercase;
    font-size: 12px;
    -webkit-box-shadow: 2px 2px 4px 0 rgba(0,0,0,0.25);
    border: none;
    border-bottom: solid 1px gray;
    border-right: solid 1px gray;
    border-radius: 3px;
    cursor: pointer;
}

.auth-email-message {
    color: green;
    font-size: 12px;
    font-weight: bolder;
}

/* Account Form Inputs */
.account-input {
    margin-bottom: 20px;
}

/* General Form Utilities */
.form-clearfix {
    clear: both;
}

.form-clearfix-with-divider {
    clear: both;
}

.form-clearfix-with-divider::after {
    content: "";
    display: block;
    clear: both;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

/* Form colors and borders */
.border-light-gray {
    color: lightgray;
}

