.info-box {
    border: 3px solid var(--secondary-color);
    border-radius: 1.5em 0 1.5em 0;
    padding: 1.5em;
}

.info-box ul {
    list-style-type: none;
    /*use padding to move list item from left to right*/
    padding-left: 1em;
    font-size: 1.2em;
    margin: 0.3em 0;
}

.info-box li {
    color: var(--secondary-color);
}

.info-box li:before {
    content: "–";
    position: absolute;
    /*change margin to move dash around*/
    margin-left: -1em;
}

.info-box p {
    font-size: 1.2em;
    margin: 0;
}

.info-box small {
    color: var(--secondary-color);
    display: block;
    margin-top: 0.5em;
    font-size: 0.9em;
}

.info-box img {
    width: 3rem;
    height: 3rem;
}

.info-box .split {
    display: grid;
    grid-template-columns: auto auto;
    gap: 1em;
}

.appl-form .mandatory:after {
    content: " *";
    color: var(--primary-color);
}

.appl-form small {
    color: var(--accent-color);
    display: block;
    margin-top: 5px;
}

.appl-form input {
    border: 1px solid var(--primary-color);
    border-radius: 0.5em;
    padding: 0.5em;
    width: 80vw;
    max-width: 600px;
    font-size: 1.2em;
    accent-color: var(--primary-color);
    box-sizing: border-box;
}

.appl-form input[type="radio"] {
    width: 1em;
}

.appl-form input[type="checkbox"] {
    width: 1em;
}

.appl-form input[type="date"] {
    font-size: 1.4em;
}

.appl-form select {
    border: 1px solid var(--primary-color);
    border-radius: 0.5em;
    padding: 0.5em;
    width: 80vw;
    max-width: 600px;
    font-size: 1.2em;
    accent-color: var(--primary-color);
    background-color: var(--secondary-color);
    box-sizing: border-box;
}

.appl-form option {
    width: 80vw;
    max-width: 600px;
    box-sizing: border-box;
}

.appl-form .check {
    padding: 1em 0;
}

.appl-form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5em;
    padding: 0.75em 1.5em;
    font-size: 1.2em;
    cursor: pointer;
}

.appl-form button:hover {
    background-color: var(--accent-color);
}

/* Form Popup Styles */
.form-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.form-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.form-popup-content {
    position: relative;
    background-color: white;
    border-radius: 0.5em;
    padding: 2em;
    max-width: 500px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.form-popup-content.success {
    border-left: 5px solid #28a745;
}

.form-popup-content.error {
    border-left: 5px solid #dc3545;
}

.form-popup-close {
    position: relative;
    top: -1em;
    right: -0.7em;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #666;
    padding: 0;
}

.form-popup-close:hover {
    color: #000;
}

#form-popup-message {
    font-size: 1em;
    line-height: 1.5;
}

#form-popup-message p {
    margin: 0.5em 0;
}