html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

@font-face {
    font-family: black;
    src: url("../fonts/Adamant Sans Black.ttf");
}

@font-face {
    font-family: bold;
    src: url("../fonts/Adamant Sans Bold.ttf");
}

@font-face {
    font-family: medium;
    src: url("../fonts/Adamant Sans Medium.ttf");

}

@font-face {
    font-family: italic;
    src: url("../fonts/Adamant Sans Medium Italic.ttf");
}

body {
    overflow: hidden;
}

.side {
    width: 6%;
    padding-top: 45px;
    background: #f8f8f8;
    float: left;
    height: 650px;
}

.side img {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.main {
    background-image: url("../img/background.jpg");
    float: left;
    width: 94%;
    box-sizing: border-box;
    -webkit-box-shadow: -8px 0px 28px -4px rgba(173, 173, 173, 1);
    -moz-box-shadow: -8px 0px 28px -4px rgba(173, 173, 173, 1);
    box-shadow: -8px 0px 28px -4px rgba(173, 173, 173, 1);
    height: 694px;

}

nav {
    padding-top: 30px;
    width: 100%;
    color: #ffffff;
    padding-left: 12px;
    margin-bottom: 102px;
}

nav hr {
    width: 6%;
    margin-left: 0;
    margin-right: auto;
}

.main-content {
    background: rgba(255, 255, 255, 0.8);
    width: 485px;
    height: 375px;
    margin: 0 auto;
    padding: 50px 20px 20px 20px;
    box-sizing: border-box;

}

.logo {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.heading-login {
    font-family: black;
    font-size: 26px;
    color: #0D4077;
}

.nav-text {
    font-family: medium;
    font-size: 16px;
}

.main-text {
    font-family: italic;
    font-size: 19px;
    float: left;
    margin-left: 15px;
    color: #0d4077;
}

.login-div span {
    font-family: medium;
    font-size: 17px;
    color: #fff;
}

.login-div {
    background: #c7363d;
    text-align: center;
    height: 40px;
    padding-top: 8px;
    box-sizing: border-box;
    cursor: pointer;
}

.login-div span {
    font-family: medium;
    font-size: 17px;
    text-transform: capitalize;
    margin-left: 55px;
}

.login-div img {
    float: right;
    margin-right: 30px;
    width: 30px;
}

.main-content hr {
    border: 3px solid #c7363d;
}

a {
    text-decoration: none;
}

@media screen and (min-width: 1400px) {
    .main {
        height: 1100px;
        background-size: cover;
    }

    .side {
        height: 1100px;
    }
}

.pulsate {
    -webkit-animation: pulsate 1.5s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 0.5;
    color: #c7363d;
    font-family: medium;
    text-align: center;
}

@-webkit-keyframes pulsate {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1.0;
    }
    100% {
        opacity: 0.5;
    }
}

.alert-box {
    background: #c7363d;
    width: 50%;
    left: 27%;
    position: absolute;
    height: 65px;
    color: white;
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    box-sizing: border-box;
    font-family: medium;
    visibility: hidden;
}