/* login page css */
.bg-login-image, .bg-password-image, .bg-register-image {
    background: url("../images/front_view.jpg");
    background-size: cover;
    background-position: center;
}


input[type="text"],
input[type="password"], input[type="email"] {
    width: 100%;
    padding: 4px;
    margin: 5px 0 10px 0;
    border: none;
    border-radius: 5px;
    background-color: #f2f2f2;
}
input[type="text"]:focus,
input[type="password"]:focus {
    background-color: #ddd;
    outline: none;
}
input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
input[type="submit"]:hover {
    background-color: #45a049;
}
input[type="submit"]:active {
    background-color: #3e8e41;
}