﻿body {
    margin: 0;
    font-family: sans-serif;
}

.content {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/background.jpg);
    background-position: center;
    background-size: cover
}

.panel {
    border: 1px solid #c1a496;
    border-radius: 10px;
    background-color: rgba(164, 150, 115, 0.76);
    color: #565656;
    display: flex;
}

.panel-heading {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color: rgba(164, 150, 115, 0.76);
    display: flex;
    align-items: center;
}

    .panel-heading img {
        width: 80px;
        margin: 30px;
    }

.panel-body {
    padding: 20px 30px;
}

.row {
    padding: 5px 0;
}

    .row label {
        font-size: 85%;
    }

    .row input {
        width: 100%;
        line-height: 3em;
        padding-left: 10px;
        margin-top: 4px;
        box-sizing: border-box;
        border: none;
        border-radius: 5px;
    }

    .row button {
        border-radius: 3px;
        border: none;
        padding: 10px 20px;
        background-color: #93AA84;
        color: white;
        font-size: 100%;
        margin: 5px 5px 0 0;
        cursor: pointer;
        transition: all 0.1s linear;
    }

        .row button:hover {
            background-color: #456E2B;
        }

    .row a {
        color: black;
        font-weight: bold;
    }

.center {
    text-align: center;
}


.result-form {
    text-align: center;
    max-width: 400px;
}



/* Styles for validation helpers */

.validation-summary-errors {
    color: #b34b4b;
}
