/* inter-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter-v13-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html {
    /* background-color: #90C4F6; */
    background-color: white;
    /*font-family: sans-serif; */
    height: 100%;
}

body {
    /* background-color: #90C4F6; */
    background-color: white;
    overflow: hidden;
    margin: 0;
    height: 100%;
    margin: 0;
    padding: 0;
    min-height: 100%;
}

input {
    height:40px;
    font-size:32px;
}

.container {
    height: 100%;
    display: table;
    width: 100%;
}

.header, .footer {
    display: table-row;
    height: 40px;
    margin: 0;
    padding: 0;
}

.content {
    display: table-row;
    height: auto;
}


table {
    margin: 0;
    padding: 0;
    border: 0;
    border-collapse: collapse;
    border-spacing: 0;
}

tr {
    margin: 0;
    padding: 0;
    border: 0;
}

td {
    margin: 0;
    padding: 0;
    border: 0;
}

img {
    padding: 0px
}

button {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background-color: #f16036;
    border: none;
    width: 160px;
    height: 40px;
    border-radius: 20px;
    padding: 10px 20px;
    margin: 2px;
    cursor: pointer;
}

.btn-link {
    display: inline-block; /* make it behave like a button */
    margin: 2px;
    width: 160px;
    height: 40px;
    line-height: 40px;
    background-color: #f16036; /* DC */
    color: white; /* text color */
    text-decoration: none; /* remove underline */
    border: none; /* border for button look */
    border-radius: 20px; /* rounded corners */
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    vertical-align: middle;
    text-align: center;
}

.btn-link:hover {
    background-color: black; /* hover effect */
}

.btn-group label {
    display: inline-block;
    margin: 2px;
    width: 160px;
    height: 40px;
    line-height: 40px;
    background-color: #4287f5; /* DC */
    color: white; /* text color */
    text-decoration: none; /* remove underline */
    border: none; /* border for button look */
    border-radius: 20px; /* rounded corners */
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
}

.btn-group input[type=radio] {
    display: none; /* hide the actual radio */
}

.btn-group input[type=radio]:checked + label {
    background: #f16036;
    color: #fff;
}
