﻿body {
    margin: 0;
    padding: 0;
    display: block;
    font-family: 'Roboto', sans-serif;
}

.loginpage {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 100vh;
    width: 100%;
    background-color:black;
    /*background: url(../images/school2.png) no-repeat;*/
    background-size: cover;
}

#mainPageVideo {
    position: fixed;
    background-size: auto;
    left: 0;
    bottom: 0;
    width: calc(100% - 400px);
    /*min-width: 80%;*/
    min-height: 100%;
}

#mainPageImg {
    position: fixed;
    background-size: auto;
    left: 0;
    bottom: 0;
    width: calc(100% - 400px);
    /*min-width: 80%;*/
    min-height: 100%;
}

.loginpage-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    max-width: 400px;
    min-height: 100vh;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 500;
}

.loginpage-c-content {
    display: flex;
    flex-direction: column;
}

.loginpage-title {
    text-align:center;
    width: 90%;
    margin: 15px auto;
    display: block;
}

.loginpage-title img {
    width: 90%;
    margin-bottom:40px;
}

.loginpage-title h1 {
    font-size: 18px;
    color: #455A64;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    padding: 15px 0 25px 0;
    position: relative;
}

.loginpage-title h1::before {
    content: "";
    width: 30px;
    height: 2px;
    background: #455A64;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.loginpage-title p {
    font-size: 14px;
    color: #455A64;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    padding: 0 0;
}

.loginpage-fields {
    width: 90%;
    margin: 15px auto;
    display: block;
}

.loginpage-msg {
    display: flex;
    width: 90%;
    margin: 0 auto -15px auto;
}

.loginpage-msg.msg-err {
    background: #F4511E;
}
.loginpage-msg.msg-suc {
    background: #7CB342;
} 

.loginpage-msg p {
    font-size: 12px;
    color: #ffffff;
    font-weight: 400;
    padding: 10px 10px;
    letter-spacing: 1px;
    margin: 0;
}

.loginpage-input {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

.loginpage-input label {
    display: block;
    background-color: #ECEFF1;
    padding: 8px 15px;
    color: #455A64;
    font-size: 12px;
}

.loginpage-input label i {
    font-size: 10px;
    margin-right: 5px;
}

    .loginpage-input input[type="text"],
    .loginpage-input input[type="email"],
    .loginpage-input input[type="password"],
    .loginpage-input input[type="date"],
    .loginpage-input select {
        font-size: 14px;
        font-family: inherit;
        background: #ffffff;
        border: 1px solid #ECEFF1;
        padding: 10px 15px;
    }

.loginpage-input button {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: inherit;
    border: 1px solid #ECEFF1;
    background: #455A64;
    color: #ffffff;
    padding: 10px 15px;
    display: table;
    cursor: pointer;
    transition: 0.2s all;
}
.loginpage-input button:hover {
    background: #263238;
}

.loginpage-more {
    display: block;
    width: 90%;
    margin: 0 auto 50px auto;
    margin-top: 35px;
}

.loginpage-more p {
    font-size: 12px;
    color: #455A64;
    letter-spacing: 1px;
    text-align: center;
}
.loginpage-more p a {
    color: #263238;
    text-decoration: none;
    border-bottom: 1px solid #455A64;
}

.loginpage-span {
    display: block;
    width: 80%;
    margin: 0 auto;
    position: relative;
}
.loginpage-span::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #ECEFF1;
    position: absolute;
    top: 50%;
    left: 0;
}
.loginpage-span span {
    text-align: center;
    padding: 5px 10px;
    display: table;
    margin: 0 auto;
    color: #455A64;
    background-color: #ECEFF1;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    position: relative;
}




@media (max-width: 700px) {
    .loginpage-content {
        width: 100%;
        max-width: 100%;
    }

    #mainPageVideo{
        display:none;
    }
}