html, body {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: auto;
}

* {
    margin: 0;
    padding: 0;	
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
.bold {
    font-weight: bold;
}
.floatLeft {
    float: left;
}
.floatRight {
    float: right;
}
.clear {
    clear: both;
}
a {
    color: #388070;
    text-decoration: none;
}


.page__banner {
    height: 500px;
    background-color: white;
}
.page__banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: inherit;
}
.page__img__box {
    width: 100%;
    height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end!important;
}
.page__img__box  img {
    width: 70%;
}
.page__logo__box {
    margin-left: 200px;
}
.page__logo {
    width: 50%;
    margin: auto;
    position: relative;
}
.spacer__box {
    background-color: #07342a;
    height: 70px;
}
.header__flex__row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    height: inherit;
}

.header__flex__column {
    display: flex;
    flex-direction: column;
    flex: 0 0 50%;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
}
.flex__container--row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 70%;
    margin: 50px auto;
    flex-wrap: wrap;
}
.flex__container--row > .flex__container--item {
    flex: 1 1 0px;
    padding: 0 20px;
    width: 0;
}
.welcome__text {
    text-align: center;
    font-weight: 300;
}
.button__login img {
   margin: 30px 0;
}
.page__text {
    line-height: 2;
    color: #2a2a2a;
}
.text__center {
    text-align: center;
}
.text__left {
    text-align: left;
}
.text__italic {
    font-style: italic;
}
.required {
    color: red;
}
.form__label {
    display: inline-block;
    padding: 15px 0 5px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}
.form__input {
    height: auto;
    padding: 8px !important;
    margin-bottom: 15px;
    background: white;
    color: #626262;
    border: 1px solid #dcdcdc;
    border-radius: 3px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    width: -webkit-fill-available;
}
.input__half {
    width: 42%!important;
}

.form__submit {
    display: inline-block;
    height: auto;
    cursor: pointer;
    padding: 10px 30px;
    background: #c4c4c4;
    color: white !important;
    border: 2px solid #c4c4c4;
    border-radius: 2px;
    letter-spacing: 0.2em;
    text-transform: capitalize;
    white-space: normal;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-top: 15px;
}

.column__image a img {
    width: 200px;
    margin: 25px auto;
}

.article__banner {
    width: 35%;
    margin: auto;
}
.article__banner img{
    width: 100%;
}
.iframe__box {
    position: relative;
    padding-bottom: 100vh;
    padding-top: 70vh;
    height: 0;
    overflow: hidden;
}
.iframe__content {
    height: 100%;
    width: 100%;
    border: none;
    overflow: hidden;
    position: absolute;
    top: 0;
}
.iframe__container {
    width: 100%; 
    overflow-y: hidden;
}

#error_message, #success_message {
    height: auto;
    padding: 10px 30px;
    color: white !important;
    border: 2px solid #c4c4c4;
    border-radius: 2px;
    letter-spacing: 0.2em;
    text-transform: capitalize;
    white-space: normal;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}
#error_message {
    background: #fa000080;
}
#success_message {
    background: #58943c8f;
}
.hidden {
    display: none;
    visibility: hidden;
}
.show {
    display: inline-block;
    visibility: visible;
}


/*---------------------------NO COPY CSS---------------------------------*/
/* NO SELECT + HIGHLIGHT COLOR */
.no-copy {
  user-select: none;
}
.no-copy::selection {
  background: none;
}
.no-copy::-moz-selection {
  background: none;
}