#success {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 14px;
    background-color: var(--color-black3);
    border: 1px solid var(--color-dark-green);
    border-radius: 5px;
    font-weight: bold;
    color: var(--color-green);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    /*animation: fadeOut 3s ease forwards;*/
}

#error{
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 16px;
    z-index: 9999;
    padding: 14px;
    background-color: var(--color-red);
    border-radius: 5px;
    color: #FFF;
    /*animation: fadeOut 3s ease forwards;*/
}

.form-content{
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 20px;
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 16px;
}
  
.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
}

.checkbox-container:hover input[type="checkbox"] ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark {
    background-color: #2196F3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input[type="checkbox"]:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}