﻿/*body background css*/
body {
    padding: 0;
    margin: 0;
    background: url(/images/background_2.jpg)no-repeat;
    background-size: cover;
}

/*login form css*/
.form {
    font-family: "Roboto", sans-serif;
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    opacity: 95%;
    max-width: 360px;
    margin: 200px auto 100px;
    padding: 10px 45px 30px 45px;
    text-align: center;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
    border-radius: 10px;
}

    .form p {
        font-size: 15px;
        padding: 1px;
        text-align: center;
    }

    .form input {
        outline: 0;
        border-radius: 10px;
        background: #F2F2F2;
        width: 100%;
        border: 0;
        margin: 0 0 15px;
        padding: 15px;
        box-sizing: border-box;
        font-size: 14px;
    }

        .form input:hover {
            background-color: #D3F8F9;
            transition: all 1s ease 0s;
        }

        .form input:focus {
            background-color: #D3F8F9;
            transition: all 1s ease 0s;
        }

    .form button {
        box-shadow: 0px 10px 14px -7px #3e7327;
        background: linear-gradient(to bottom, #77b55a 5%, #72b352 100%);
        background-color: #77b55a;
        border-radius: 4px;
        border: 1px solid #4b8f29;
        display: inline-block;
        cursor: pointer;
        color: #ffffff;
        font-family: Arial;
        font-size: 13px;
        font-weight: bold;
        padding: 6px 12px;
        text-decoration: none;
        text-shadow: 0px 1px 0px #5b8a3c;
    }

.myButton:hover {
    background: linear-gradient(to bottom, #72b352 5%, #77b55a 100%);
    background-color: #72b352;
}

.myButton:active {
    position: relative;
    top: 1px;
}

.myButton:hover {
    background: linear-gradient(to bottom, #72b352 5%, #77b55a 100%);
    background-color: #72b352;
}

.myButton:active {
    position: relative;
    top: 1px;
}

.form button:hover, .form button:active, .form button:focus {
    background-color: #06C5CF;
    transition: all 1s ease 0s;
}

.form .message {
    margin: 15px 0 0;
    color: #B3B3B3;
    font-size: 12px;
}

    .form .message a {
        color: #06C5CF;
        text-decoration: none;
    }
