﻿/* Login.cshtml */
html, body {
    height: 100%;
    background-image: url("../img/water-bg.jpg");
    background-size: cover;
}

.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
}

#formContent {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    padding: 0px;
    -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    text-align: center;
}

#formHeader {
    background-color: #56B4D9;
    border-bottom: 1px solid #dce8f1;
    padding: 15px;
    text-align: center;
    -webkit-border-radius: 10px 10px 0 0;
    border-radius: 10px 10px 0 0;
    color: #fff;
}

.maintenance {
    width: 100%;
    border: 3px solid #0090F8;
    text-align: center;
    background-color: #F8F8F8;
    padding-top: 50px;
    padding-bottom: 60px;
}
    .maintenance > div {
        font-size: 24px;
    }
    .maintenance > .title {
        color: #0090F8;
        font-weight: bold;
        font-size: 28px;
    }
    .maintenance hr {
        width: 90%;
        border-color: #0090F8;
        margin-top: 10px;
        margin-bottom: 30px;
    }