/* Reset box-sizing for all elements */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove margin and padding for all elements */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
figure,
blockquote,
dl,
dd {
    margin: 0;
    padding: 0;
}

/* Set font-size and line-height for better consistency */
body {
    font-size: 1rem;
    line-height: 1.5;
}

/* Remove list styles */
ol,
ul {
    list-style: none;
}

/* Remove default outline styles */
button,
input,
textarea,
select,
a {
    outline: none;
}

/* Remove default border and outline styles */
button,
input[type="text"],
input[type="password"],
textarea,
select {
    border: none;
    outline: none;
}

/* Remove default appearance styles */
button,
input[type="text"],
input[type="password"],
textarea,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Remove text-decoration from links */
a {
    text-decoration: none;
}

#root {
    min-height: 100vh;
}
.c-search {
    display: none !important;
}
.ms-ChoiceField > .ms-ChoiceField-wrapper > legend,
.ms-ChoiceField > .ms-ChoiceField-wrapper > label {
    font-size: inherit;
}

