﻿.container {
    width: 700px;
}

.panel-body {
    padding: 25px;
}

body {
    background-color: whitesmoke;
}

input[type="text"].form-control:focus, input[type="password"].form-control:focus, input[type="date"].form-control:focus, select.form-control:focus {
    border-color: royalblue;
    border: 3px solid royalblue;
    background-color: whitesmoke;
    font-weight: bold;
}

textarea:focus {
    border-color: royalblue;
    border: 3px solid royalblue;
    background-color: whitesmoke;
    font-weight: bold;
}

@media (max-width: 767px) {
    .container {
        width: 100%;
    }
}
