﻿html {
    background-color: #f7f7f7;
    --webkit-background-size: cover;
}

.login-page {
    width: 75%;
    height: 75%;
    position: absolute;
    bottom: 50px;
    right: 50px;
}

.form {
    z-index: 1;
    background: #FFFFFF;
    padding: 45px;
    /* box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24); */
    border-radius: 5px;
}

    .form input {
        font-family: "Trebuchet MS";
        outline: 0;
        background: #eeeeee;
        width: 100%;
        border: 0;
        margin: 0 0 15px;
        padding: 15px;
        box-sizing: border-box;
        font-size: 14px;
        border-radius: 5px;
    }

        .form input:focus, textarea:focus {
            box-shadow: 0 0 5px;
            transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
            /* border: 1px solid #fe0000; */
        }

    .form button {
        font-family: 'Trebuchet MS';
        text-transform: uppercase;
        outline: 0;
        background: #74B62F;
        width: 100%;
        padding: 15px;
        color: #FFFFFF;
        font-size: 18px;
        cursor: pointer;
        border: 0 solid;
        outline-offset: 0px;
        text-shadow: none;
        box-shadow: 0 0 5px;
        transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
        border-radius: 5px;
    }

        .form button:hover, .form button:active, .form button:focus {
            box-shadow: inset 0 0 20px #74B62F, 0 0 20px #74B62F;
            outline-color: #74B62F;
            outline-offset: 15px;
            text-shadow: 1px 1px 2px #427388;
            transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
        }

    .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;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 10px;
}

    .container:before, .container:after {
        content: "";
        display: block;
        clear: both;
    }

    .container .info {
        margin: 50px auto;
        text-align: center;
    }

        .container .info h1 {
            margin: 0 0 15px;
            padding: 0;
            font-size: 36px;
            font-weight: 300;
            color: #1a1a1a;
        }

        .container .info span {
            color: #4d4d4d;
            font-size: 12px;
        }

            .container .info span a {
                color: #000000;
                text-decoration: none;
            }

            .container .info span .fa {
                color: #EF3B3A;
            }

body {
    font-family: "Trebuchet MS";
    --webkit-background-size: cover;
}

.validation-summary-errors {
    color: #ff0000 !important;
}

.validation-summary-valid {
    display: none;
}