

:root {
    --bg-color: #4c5844;
    --bg-deep: #3e4637;
    --bg-dark: #303843;
    --bg-light: #808080;

    --text-lcon: #a0aa95;
    --text-hcon: #fff;
    --text-accent: #fdd179;
    --text-hl: #b55945;
  }
  

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size:   min(calc(0.8rem + 0.5vw), 18px)
}

h1, h2, h3 {
    color: var(--text-accent) !important;
}


a {
    font-size: inherit;
    color: var(--text-accent) !important;
}

body {
    background-color: var(--bg-dark) !important;
}


.window p.disclaimer {
    font-size:  0.8rem;
    color: var(--text-lcon);
}

button[type="submit"] {
    margin-left: auto
}

fieldset {
    padding: 0.5rem
    
}

fieldset legend {
    color: var(--text-lcon);
}

.flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100% !important; /* Ensures the flex-row takes full width */
}

.flow-label {
    flex-basis: 20%; /* Adjust this value as needed */
    flex-shrink: 0; /* Prevents the label from shrinking */
}

.flow-field {
    flex-grow: 1; /* Allows the input to grow and fill the space */
    width: 100%; /* Ensures the input takes full available width */
}
 
label[for="email"] {
    font-size: 0.8rem;
    align-self: center;
}

input[type="email"] {
    color: var(--text-hcon);
    background-color: var(--bg-deep) ;
    width: 100%;
    padding: 1rem 0.5rem;
}

input[type="checkbox"] + label {
    font-size: 1rem;
    margin-left: 0.5rem;
}

input[type="checkbox"]:checked + label {
    color: var(--text-accent);
}

button[type="submit"] {
    padding: 1rem 0.5rem;
    display: inline-flex;
    align-items: center;
}


.lists {
    margin-top: 0.5em;
}

.lists li {
    list-style: none;
    display: flex;
    align-items: center;
    margin-top: 0.1rem;
}

img {
    width: 100%;
    border: none;
}

ul.minimal li{
    margin-left: 1em;
}