/* General body */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f6fa;
    color: #2f3640;
    margin: 0;
    padding: 0;
}

/* Headers */
h2, h3, h4 {
    color: #273c75;
}

/* Container */
body > div, form {
    background-color: #fff;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
    max-width: 700px;
}

/* Forms */
input[type=text], input[type=number], input[type=email], input[type=password], input[type=month], textarea, select {
    width: 95%;
    padding: 8px 10px;
    margin: 5px 0 15px 0;
    border: 1px solid #dcdde1;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 14px;
}

button {
    background-color: #273c75;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
}

button:hover {
    background-color: #40739e;
}

/* Links */
a {
    color: #487eb0;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Lists */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
}

/* Autocomplete suggestions */
#mf_suggestions div, #fin_suggestions div {
    background: #dcdde1;
    padding: 8px;
    margin: 2px 0;
    cursor: pointer;
    border-radius: 5px;
}

#mf_suggestions div:hover, #fin_suggestions div:hover {
    background: #718093;
    color: white;
}

/* Responsive */
@media(max-width: 768px){
    body > div, form {
        width: 95%;
        padding: 15px;
    }

    input[type=text], input[type=number], input[type=email], input[type=password], input[type=month], textarea, select {
        width: 100%;
    }
}