* {
    font-family: system-ui, -apple-system, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html {
    background-color: #f2f2f2;
    height: 100%;

}



h1 {
    margin: 0 0 24px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 4px;
    margin-left: 0px;
    font-size: 24px;
    font-weight: 800;
    line-height: 25px;
    color: #126f66;

}

body {
    height: 100%;
    padding: 0px;
    margin: 0px;
}



.outer-contain {
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
    flex-direction: column;

}

.formData {
    display: inline;

}

.form-contain {

    box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);

    padding: 30px;
    background-color: #ffffff;
}

.form-contain label {
    width: 100px;
    display: inline-block;
}

.form-contain input {
    width: 250px;
    height: 30px;
    display: inline-block;
}



/* CSS */
.form-contain button {

    align-items: center;

    background-clip: padding-box;
    background-color: #126f66;
    border: 1px solid transparent;

    box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: flex;


    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    line-height: 1.25;
    margin: 0;

    padding: calc(.875rem - 1px) calc(1.5rem - 1px);
    position: relative;
    text-decoration: none;
    transition: all 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    width: 120px;
    height: 45px;
}

.form-contain button:hover,
.form-contain button:focus {
    background-color: grey;
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.form-contain button:hover {
    transform: translateY(-1px);
}

.form-contain button:active {
    background-color: #c85000;
    box-shadow: rgba(0, 0, 0, .06) 0 2px 4px;
    transform: translateY(0);
}

.text-field {
    padding-bottom: 20px;
}

.error {
    height: 50px;
}

#error-msg {
    font-size: 14;
    color: red;
}

.result-head,
.result {
    width: 430px;

}

.result-head {
    padding-top: 20px;
}

.result {

    height: 200px;
    margin-top: 10px;
    background-color: lightgrey;
    padding: 10px;
}

#res-dash {
    color: black
}

.logo {
    height: 38px;
    width: auto;
}

.toolbar {
    width: 100%;

    position: absolute;
    background-color: white;
    padding: 10px;
}