@font-face {
    font-family: 'horatio';
    src: url('../fonts/horatio.ttf') format('truetype');
}

html {
    font-size: 14px;
}

@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%;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: #10322A;
    color: #fff;
    font-family: 'Mulish', sans-serif;
    font-weight: 300;
    width: 100%;
    height: 100%;
}

strong {
    font-weight: 600;
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    color: #212529;
    background-color: #E4F0DF;
}

    .form-control:focus, .form-check-input:focus {
        box-shadow: none;
    }

.form-label {
    font-size: 14px;
    font-weight: bold;
}

.text-muted {
    color: #90979e !important;
}

.btn-primary {
    color: #fff;
    background-color: #4CAC4B;
    border-color: #469a46;
    margin-top: 1rem;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #3c8b3c;
        border-color: #367f36;
    }

    .btn-primary:focus {
        color: #fff;
        background-color: #4CAC4B;
        border-color: #469a46;
        box-shadow: none;
    }


.calculator {
    max-width: 525px;
    width: 100%;
    padding: 0 30px;
}

    .calculator .logo p {
        font-size: 30px;
        font-family: 'horatio', sans-serif;
        margin-bottom: 20px;
    }

.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: #E4F0DF;
    border: 1px solid #ced4da;
    border-radius: 0 0.25rem 0.25rem 0;
}
.has-error{
    border: 1px solid red;
}
.alert {
    padding: 1.5rem;
}

    .alert p {
        margin-bottom: 0;
    }
