﻿html, body {
    height: 100%;
}

body {
    display: flex;
    align-items: center;
    font-family: 'Open Sans';
    background: #0072c6; /* fallback for old browsers */
    background: -webkit-linear-gradient(right, #0072c6, #0072c6);
    background: -moz-linear-gradient(right, #0072c6, #0072c6);
    background: -o-linear-gradient(right, #0072c6, #0072c6);
    background: linear-gradient(to left, #0072c6, #0072c6);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.login-page {
    width: 360px;
    padding: 0 0 0;
    margin: auto;    
}


    .login-page .forget {

    }

        .login-page .forget h1 {
            font-size: 48px;
            font-weight: 300;
            font-style: normal;
            text-align: center;
            padding-top: 10px;
            padding-bottom: 10px;
            margin: 0px !important;
            color: #555;
        }

        .login-page .forget a {
            background: #eee;
            padding: 10px 0;
            text-align: center;
            display: block;
            text-decoration: none;
            color: #555;
        }

            .login-page .forget a:hover {
                background: #ddd;
            }

            .login-page .forget a span {
                line-height: 30px;
                margin-bottom: 10px;
                position: relative;
            }

.box {
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

.form {
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    max-width: 360px;
    margin: 0 auto 100px;
    padding: 45px;
    text-align: center;
}

    .form input {
        outline: 0;
        background: #f2f2f2;
        width: 100%;
        border: 0;
        margin: 0 0 15px;
        padding: 15px;
        box-sizing: border-box;
        font-size: 14px;
        transition: none !important
    }

    .form button {
        text-transform: uppercase;
        outline: 0;
        background: #0067b8;
        width: 100%;
        border: 0;
        padding: 15px;
        color: #FFFFFF;
        font-size: 14px;
        -webkit-transition: all 0.3 ease;
        transition: all 0.3 ease;
        cursor: pointer;
    }

        .form button:hover, .form button:active, .form button:focus {
            background: #005da6;
        }

    .form .message {
        margin: 15px 0 0;
        color: #b3b3b3;
        font-size: 12px;
    }

        .form .message a {
            color: #4CAF50;
            text-decoration: none;
        }

    .form .register-form {
        display: none;
    }

.container {
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

    .container:before, .container:after {
        content: "";
        display: block;
        clear: both;
    }

.text-danger {
    font-size: 0.9em;
    text-align: left;
}

.input-validation-error {
    border: 1px solid #ff0000 !important;
    color: #ff0000 !important
}