.upload-page.active {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    /*border: solid forestgreen;*/
    height: 89vh;
}

.about-page.active {
    display: flex;
    flex-direction: column;
}

.general-info {
    /*border: solid green;*/
    display: flex;
    flex-direction: column;
    padding: 50px 50px;
    background: #56aec4;
    border-radius: 15px;
    width: 50%;
    height: 50%;
    align-self: center;
    font-size: 21px;
}

.general-info h1 {
    font-weight: 600;
    font-size: 35px;
}

.general-info h2 {
    font-weight: 600;
    font-size: 30px;
}

.general-info a {
    color: #e1f0f0;
}

.general-info a::after {
    color: #e1f0f0;
}

.upload-page h1 {
    color: #252b2c;
}

form {
    /*border: solid red;*/
    background: #56aec4;
    padding: 50px 50px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    height: 700px;
    width: 35vw;
    gap: 16px;
    font-size: 20px;
}

.section-title {
    font-size: 25px;
    font-weight: 600;
}

.form-element {
    display: flex;
    flex-direction: column;
    gap: 5px;
    /*border: solid forestgreen;*/
}

input {
    margin: 0.4rem;
}

input[type="radio"] {
    accent-color: #56aec4;
}

input[type="file"]::file-selector-button {
    padding: 8px 16px;
    margin-right: 12px;
    font-family: inherit;
    border: solid #e1f0f0;
    background: none;
    border-radius: 15px;
    color: #e1f0f0;
    cursor: pointer;
}

input[type="file"] {
    font-family: inherit;
}

input[type="checkbox"] {
    accent-color: #e1f0f0;
}

.submit {
    width: min(520px, 100%);
    padding: 14px 24px;
    align-self: center;
    background: #56aec4;
    border: solid #e1f0f0;
    border-radius: 15px;
    margin: 20px 0;
    color: #e1f0f0;
    cursor: pointer;
}

.description {
    font-size: 15px;
    color: #4f5f63;
    line-height: 1.4;
    margin: 10px 0 0;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.loading-overlay {
    position: fixed;
    inset: 0;

    display: none;
    justify-content: center;
    align-items: center;

    background-color: rgb(255 255 255 / 75%);
    backdrop-filter: blur(3px);

    z-index: 9999;
}

.loading-overlay.active {
    display: flex;
}

.loader-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;

    padding: 32px 40px;
    border: 1px solid rgb(0 0 0 / 15%);
    border-radius: 18px;

    background-color: white;
    box-shadow: 0 12px 40px rgb(0 0 0 / 12%);
}

.loader-card p {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #56aec4;
}

.loader-card span {
    font-size: 14px;
    color: rgb(86 174 196 / 60%);
}

.spinner {
    width: 48px;
    height: 48px;

    border: 4px solid rgb(86 174 196 / 15%);
    border-top-color: #56aec4;
    border-radius: 50%;

    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
