/*
 * Copyright (c) 2020. Certara. All Rights reserved
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: content-box;
    min-width: 0;
}

body {
    overflow: hidden;
    font-family: "Arial", sans-serif;
    font-size: 16px;
}

input {
    height: 20px;
    width: 190px;
    margin-bottom: 20px;
}

button {
    margin-right: 10px;
    background-color: #e3e3e3;
    border: 1px solid #0b0e07;
    display: inline-block;
    cursor: pointer;
    color: #000000;
    font-size: medium;
    padding: 4px 15px;
    text-decoration: none;
}

button:hover {
    background-color: #d5ecf6;
}

button :active {
    position: relative;
    top: 1px;
}