/* Layout & Typography */
body { 
    background: #fff; 
    margin: 0; 
    font-family: Arial, Geneva, Verdana, sans-serif;
}

.mainContainer { 
    width: 100%; 
    min-width: 600px; 
    margin: auto; 
    text-align: center; 
}

.homeLogo { 
    margin-top: 40px;
}

.welcomeDisplay { 
    margin-top: 15px; 
    font-style: italic;
}

.linkRow { margin: 18px; }

.linkStyle { 
    color: #8e6826; 
    font-size: 13px; 
    text-decoration: none; 
    cursor: pointer;
}

.linkStyle:hover { 
    color: #333;
}

/* Content wrapper - no dimensions, just centers content */
#ajaxContent {
    display: none;
    margin: auto;
}

.formContainer {
    position: relative;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: -7px 8px 40px 14px #efefef;
    margin: auto;
    box-sizing: border-box;
}

.formTopBlurb { 
    margin: 18px; 
    font-size: 15px;
    font-weight: 500;
}

.formCloseButton { 
    width: 17px; 
    height: 17px; 
    background-color: #efefef;
    position: absolute;
    top: 9px; 
    right: 9px; 
    border: 1px solid #dedede;
    cursor: pointer;
}

/* Form Field Grid */
.dataRow { 
    width: 90%;
    min-height: 30px;
    margin-bottom: 11px;
    display: flex;
    justify-content: center;
    font-size: 12px;
}

.inputLabel { 
    width: 14%;
    margin-right: 14px;
    text-align: right; 
}

/* Inputs */
.textField { border: none; border-bottom: 1px solid #000; font-size: 12px; outline: none; color: #444; }
.textArea { font-size: 12px; border: 1px solid #ccc; color: #444; }
.buttonRow { text-align: center; margin: 16px 0px; }
.buttonStyle { padding: 2px 10px; font-size: 12px; background: #f5f5f5; border: 1px solid #999; color: #5b5b5b; cursor: pointer; }
.buttonStyle:hover { background: #ececec; color: #333; }

/* Feedback States */
.returnFormTopBlurb { margin-top: 16px; font-size: 15px; }
.returnFormDisplayError { margin: 17px; font-size: 14px; color: red; }
