﻿
.input-container {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

#reportForm input[type="text"],
#reportForm input[type="number"],
#reportForm input[type="email"],
#reportForm input[type="tel"],
#reportForm input[type="url"],
#reportForm textarea,
button {
    font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif;
}

#reportForm {
    background: #F9F9F9;
    padding: 25px;
    margin: 5px 0;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

    #reportForm h3 {
        display: block;
        font-size: 30px;
        font-weight: 300;
        margin-bottom: 10px;
    }

    #reportForm h4 {
        margin: 5px 0 15px;
        display: block;
        font-size: 13px;
        font-weight: 400;
    }

fieldset {
    border: medium none !important;
    margin: 0 0 10px;
    min-width: 100%;
    padding: 0;
    width: 100%;
}

#reportForm input[type="text"],
#reportForm input[type="password"],
#reportForm input[type="number"],
#reportForm input[type="email"],
#reportForm input[type="tel"],
#reportForm input[type="url"],
#reportForm textarea {
    width: 100%;
    border: 1px solid #ccc;
    background: #FFF;
    margin: 0 0 5px;
    padding: 10px;
}

    #reportForm input[type="text"]:hover,
    #reportForm input[type="number"]:hover,
    #reportForm input[type="email"]:hover,
    #reportForm input[type="tel"]:hover,
    #reportForm input[type="url"]:hover,
    #reportForm textarea:hover {
        -webkit-transition: border-color 0.3s ease-in-out;
        -moz-transition: border-color 0.3s ease-in-out;
        transition: border-color 0.3s ease-in-out;
        border: 1px solid #aaa;
    }

#reportForm textarea {
    height: 100px;
    max-width: 100%;
    resize: none;
}

button {
    cursor: pointer;
    border: none;
    /* background: #2196F3; */
    background: #23527c; /*Dark*/
    color: #FFF;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 15px;
}

#reportForm button {
    width: 40%;
}

    #reportForm button[type="reset"] {
        margin: 0 0 5px 60px;
    }

button:hover {
    /* background: #41B6FF; */
    background: #3c8dbc; /*lite*/
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

button:active {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

#reportForm input:focus,
#reportForm textarea:focus {
    outline: 0;
    border: 1px solid #aaa;
}

.logo-lg {
    background-image: url('../img/app-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    height: 50px;
    width: 150px;
    padding-left: 50px;
}
.logo-mini {
    background-image: url('../img/app-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-size: contain;
    height: 50px;
    width: 30px;
}