﻿
input[type=radio] {
    transform: scale(1.1);
}

#versionContainer {
    display: none;
}

#mainContainer {
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgb(240, 240, 240);
}

#backgroundImgContainer {
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    position: absolute;
    align-items: center;
    justify-content: center;
}

.background-container {
    width: 33%;
    overflow: hidden;
}

#healthBackgroundContainer {
    margin-bottom: 15%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

#safetyBackgroundContainer {
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

#environmentalBackgroundContainer {
    margin-top: 15%;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.background-img {
    width: 100%;
    height: 100%;
}

.custom-container {
    width: 30%;
    z-index: 2;
    opacity: 0.9;
    display: flex;
    overflow: hidden;
    border: 1px solid;
    border-radius: 5px;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    background-color: white;
}

.custom-container-title {
    width: 100%;
    display: flex;
    font-weight: bold;
    align-items: center;
    justify-content: start;
    border-bottom: 1px solid rgb(200, 200, 200);
}

#siteSelectionContainer {
    margin: auto;
    padding: 5px;
    border: none;
}

#siteSelectionContent {
    width: 100%;
    display: flex;
    margin-top: 5px;
    align-items: center;
    justify-content: start;
    flex-direction: column;
}

#siteSelect {
    text-align-last: center;
}

#submitSiteButton {
    margin-top: 5px;
    margin-left: auto;
}

#formTitle {
    padding: 5px;
}

#safetyImg {
    width: 25px;
    margin-left: auto;
}

#formTitlePlantText {
    font-weight: normal;
    color: rgb(100, 100, 100);
}

#formContent {
    width: 100%;
    height: 100%;
    padding: 5px;
    display: flex;
    overflow-y: auto;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}

#requiredTextTip {
    margin-top: 10px;
}

.required-text {
    color: red;
    font-size: 1.1em;
}

#userNameContainer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#firstNameContainer {
    margin-right: 5px;
}

.form-container {
    width: 100%;
    display: flex;
    margin-top: 10px;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}

.form-container:not(:last-of-type) {
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(200, 200, 200);
}

.sub-form-container {
    margin-top: 0;
    padding-left: 15px;
    /*margin-left: 15px;*/
}

#userNameContainer {
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(200, 200, 200);
}

#userNameContainer .form-container {
    padding-bottom: 0;
    border-bottom: none;
}

.prompt-text {
    font-size: 0.9em;
    font-weight: bold;
}

.horizontal-radio-container {
    width: 100%;
    display: flex;
    padding-top: 10px;
    padding-left: 15px;
    padding-bottom: 10px;
    border-radius: 5px;
    align-items: center;
    justify-content: start;
}

.horizontal-radio-container div {
    margin-left: 10px;
}

.vertical-radio-container {
    width: 100%;
    display: flex;
    padding-bottom: 10px;
    border-radius: 5px;
    padding-left: 25px;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}

.vertical-radio-container div {
    margin-top: 10px;
}

.department-radio-container {
    margin-top: 5px;
}

#filesContainer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#clearFilesButton {
    margin-left: 10px;
}

#submitButton {
    margin-top: 10px;
    margin-left: auto;
}

.missing-required-field {
    outline: 0 none;
    border: 2px solid rgba(190, 10, 0, 0.8);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(190, 10, 0, 0.6);
}

@media only screen and (max-width: 1800px) {
    .custom-container {
        width: 35% !important;
    }
}

@media only screen and (max-width: 1300px) {
    .custom-container {
        width: 50% !important;
    }

    #formContainer {
        margin-bottom: auto;
    }
}

@media only screen and (max-width: 900px) {
    .custom-container {
        width: 75% !important;
    }

    .btn {
        width: 200px;
    }

    #backgroundImgContainer {
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .background-container {
        width: 100% !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        border-radius: 0 !important;
    }
}

@media only screen and (max-width: 600px) {
    .custom-container {
        border: none;
        width: 100% !important;
    }

    .btn {
        width: 100%;
    }
}