html {
    font-size: 14px;
    height: 100%;
}

body {
    height: 100%;
    margin: 0;
}

img.logo {
    display: block;
    margin: 50px 0 50px auto;
}

h2 {
    text-align: center;
}

.flex-container {
    min-height: 100%;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #003E3D;
    color: white;
}

input[type=text], textarea {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 4px;
    border: 0;
    border-bottom: 2px solid white;
}

    textarea:focus, input:focus {
        outline: none;
        border-bottom: 2px solid #003E3D;
    }

input[type=submit] {
    color: white;
    background-color: #003E3D;
    padding: 10px;
    border-radius: 4px;
    margin-top: 30px;
}

.intro {
    justify-content: center;
    display: flex;
    align-items: center;
    text-align: center;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

    .intro img {
        width: 100%;
        max-width: 300px;
        margin: 20px auto;
        display: block;
        border-radius: 4px;
    }


    .form {
        background-color: #F7BBBA;
        padding: 25px;
        border-radius: 4px;
    }


.lead {
    font-weight: 500;
}

.footer-links {
    color: white;
}

.footer-links a {
    color: #F7BBBA;
    text-decoration: none;
    padding: 0 10px;
}

a.underline {
    text-decoration: underline;
}