@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #fff;
    font-weight: normal;
}

body {
    background-color: #35374B;
}

.container {
    margin: 14vh auto;
    background-color: #78A083;
    padding: 40px;
    width: max-content;
    height: max-content;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: 28px;
    text-align: center;
    justify-content: center;
    align-items: center;
}
  
.inp-choices {
    display: flex;
    justify-content: flex-start;
    margin: 5px 72px;
}

div select, div option {
    color: #35374B;
    font-size: 16px;
}

select:focus {
    outline: none;
}

.ms-16 {
    margin-left: 16px;
}

.ms-60 {
    margin-left: 60px;
}

.input {
    margin: 20px 0 15px;
}

input[type="radio"] {
    accent-color: #35374B;
}

input[type="checkbox"] {
    accent-color: #35374B;
    width: 16px;
    height: 16px;
}

input[type="text"] {
    height: fit-content;
    color: #35374B;
    font-size: 16px;
    width: 160px;
}
input[type="text"]:focus {
    outline: 2px solid #35374B;
}

#exptxt {
    margin: auto 20px;
}

button {
    margin: 0 auto;
    width: fit-content;
    background-color: #35374B;
    border: none;
    padding: 5px 10px;
}

.output {
    margin: 20px 10px 0;
    display: flex;
    flex-direction: column;
}

.output > * {
    margin: 10px 0;

}
.o-label {
    font-weight: 600;
    color: #35374B;
    border-top: solid 1px #35374B;
}
.d-flex {
    display: flex;
}
.flex-col {
    flex-direction: column;
}
.flex-around{
    justify-content: space-around;
}
.m-50 {
    margin: 0 25px 0 25px;
}
#err-msg {
    text-decoration: underline;
    font-weight: 500;
    color: #ffdb73;
    margin-top: 15px;
}