select:required:invalid {
    color: gray !important;
}

option[value=""][disabled] {
    display: none;
}

option {
    color: black;
}

.form-select {
    color: black;
}

.card {
    width: 96%;
    height: auto;
    margin: 0 auto;
    border-radius: 25px;
}

.button-footer {
    margin-top: 50px;
    width: 100%;
    text-align: right;
}

.button-footer button {
    border-radius: 15px;
    width: fit-content;
    height: 40px;
    padding: 0 40px;
}

.image-container {
    padding-top: 50px;
}

.eclipse {
    width: fit-content;
    padding: 10% 10%;
    margin: auto auto;
    background-color: #002E6926;
    border-radius: 50%;
}

.image-container h1 {
    text-align: center;
    color: #002E69;
    font-weight: 700;
    margin-top: -20px;
    letter-spacing: 3px;
}

#other_liabilities_card {
    animation: fadeInAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
