@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');

body {
   background-color: rgb(249, 249, 249);
   color: #333333;
   font-family: 'Open Sans', Arial, sans-serif;
   line-height: 1.5;
}

h1, h2, h3 {
    font-family: Montserrat, Helvetica, Arial, sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 30px;
}

.nm-light-green {
    color: #50937B;
}

.input {
    display: block;
    box-shadow: inset 0 .0625em .125em rgba(10,10,10,.05);
    border: 1px solid #DBDBDB;
    border-radius: 4px;
    color: #363636;
    height: 1.6em;
    width: 50%;
    padding-bottom: .5em;
    padding-left: .75em;
    padding-right: .75em;
    padding-top: .5em;
    margin-bottom: .75rem;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
}

.label {
    margin-bottom: .5em;
    font-weight: 700;
    display: block;
}

.input:hover {
     border-color: #b5b5b5;
}

.input:active, .input:focus {
    border-color: #3273dc;
    box-shadow: 0 0 0 .125em rgba(50,115,220,.25);
    outline: 0;
}

.input::placeholder {
    color: #DBDBDB;
}

.card {
    box-shadow: 0 2px 25px 0 rgba(0,0,0,0.05);
    border-radius: 4px;
    margin-top: 26px;
    margin-bottom: 26px;
    color: #454545;
    background-color: white;
}

.alert {
    padding: 1.25rem 2.5rem 1.25rem 1.5rem;
    border: 1px solid #00E3A5;
    font-size: 14px;
    color: #828282;
    display: flex;
    align-items: center;
}

.alert > i {
    font-size: 20px; /*18px;*/
    color: #00E3A5;
}

.alert > span {
    margin-left: 15px
}

.container {
    width: 768px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
}

.section {
    margin-bottom: 40px;
}

.signature-container {
     background: white;
     padding: 1.25rem 2.5rem 1.25rem 1.5rem;
}

.button {
    border: 1px solid #FF7200;
    font-size: 14px;
    padding: 1em 1em 1em 1em;
    border-radius: 4px;
    font-family: Montserrat, Helvetica, Arial, sans-serif;
    background-color: white;
    color: #FF7200;
    cursor: pointer;
    transition: all .1s ease;
}

.button:hover {
    background-color: #FF7200;
    color: white;
}

.button:active, .button:focus {
    outline: 0;
    box-shadow: 0 0 0 0.125em rgba(255,114,0,.25);
}

.header-image {
    margin-top: 40px;
    height: 40px;
}

.page-heading {
    margin-top: 5px;
}