/* iframe#\:1\.container {
    display: none;
} */
.inventory-body {
    position: fixed;
    min-width: 100%;
    background: url(images/bg_cct.jpg) no-repeat top center/cover;
    min-height: 100%;
}

.login-container {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-55%, -50%);
    background-color: darkgrey;
}

body {
    background: #f0ebf8;
    font-family: 'Roboto',sans-serif;
    letter-spacing: 0.4px;
}

.bodyWrapper {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

#alertMsg {
    display: none;
}

.mainHeading {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.courseWrapper,
.participantWrapper,
.headerWrapper,
.emailWrapper,
.commentWrapper,
.alertWrapper {
    padding: 24px;
    margin-bottom: 12px;
    background: #fff;
    border-radius: 8px;
}

.logoWrapper {
}

input {
    height: 30px;
    width: 100%;
    max-width: 300px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    margin: 0;
    padding: 5px;
    border-width: 0 0 1px 0;
    outline: none;
}

.label {
    margin-bottom: 16px;
}

.buttonStyle {
    background: #3B5F7A;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 10px;
    height: 42px;
    color: #fff;
    border: 2px solid #3B5F7A;
    padding: 0 24px;
    transition: all 1s;
    cursor: pointer;
}

.buttonStyle:hover {
    border: 2px solid #3B5F7A;
    color: #3B5F7A;
    background: #fff;
}

.red {
    color: red;
}

#secondPage {
    display: none;
}

.tHeadingWrap {
    background: #3B5F7A;
    padding: 12px 24px;
    color: #fff;
    border-radius: 8px 8px 0 0;
}

#emailWrap {
    font-weight: 600;
}

.redButton {
    float: right;
}

#loader {
    border: 5px solid #f3f3f3;
    /* Light grey */
    border-top: 5px solid #000000;
    /* Blue */
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: spin 2s linear infinite;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}