.form-title {
    font-family: "Arial";
    text-align: center;
    font-size: 40px;
    margin: 0;
    padding: 0 3%;
}

.instruction-container-href {
    text-align: center;
    font-family: "Arial";
    font-size: 1.7vw;
    font-weight: bold;
    margin-top: 4%;
    padding: 0 4%;
}

.instruction-href {
    text-decoration: none;
    color: rgb(0, 113, 187);
    transition: color 0.3s ease-in-out;
}

.instruction-href:hover {
    color: rgb(36, 167, 255);
}

.document-input-container-shell {
    display: block;
    padding: 0 5%;
}
.document-input-container {
    position: relative;
    display: inline-block;
    height: 100%;
    margin: 4% 0;
}
.document-input {
    display: none;
}
.document-label, .document-label-error {
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 12px;
    margin: 0 auto;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}
.document-label {
    background-color: rgb(0, 113, 187);
}
.document-label-error {
    background-color: rgb(187, 0, 0);
}

.document-label:hover {
    background-color: rgb(36, 167, 255);
}
.document-label-error:hover {
    background-color: rgb(255, 36, 36);
}

.error-text, .error-parameters-text {
    color: rgb(187, 0, 0);
    font-family: "Arial";
    font-size: 18px;
    margin: 1vw 0 0 0;
}

.document-icon {
    width: 21px;
    margin-right: 3px;
}
.document-text, .document-name {
    font-family: "Arial";
    font-size: 22px;
}

.edit-button-container {
    display: block;
}

.edit-button, .edit-button-link, .edit-button-main {
    text-decoration: none;
    font-family: "Arial";
    color: #fff;
    font-size: 26px;
    margin-bottom: 70px;
    padding: 20px 20px;
    background-color: rgb(0, 113, 187);
    border-radius: 40px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.edit-button-main {
    width: 380px;
}

.edit-button {
    width: 340px;
    margin-bottom: 50px;
}

.edit-button-link {
    width: 300px;
    display: inline-block;
}
.edit-button:hover, .edit-button-link:hover, .edit-button-main:hover {
    background-color: rgb(36, 167, 255);
}

@media screen and (max-width: 768px) {
    .form-title {
        font-size: 30px;
    }
    .instruction-container-href {
        font-size: 2.8vw;
        margin-top: 6%;
    }
    .document-input-container {
        margin: 6% 0;
    }
    .document-label, .document-label-error {
        padding: 10px;
        border-radius: 7px;
    }
    .document-label:hover {
        background-color: rgb(0, 113, 187);
    }
    .document-label-error:hover {
        background-color: rgb(187, 0, 0);
    }
    .error-text, .error-parameters-text {
        font-size: 16px;
    }
    .document-icon {
        width: 18px;
    }
    .document-text, .document-name {
        font-size: 18px;
    }
    .edit-button, .edit-button-link, .edit-button-main {
        font-size: 22px;
        margin-bottom: 55px;
        padding: 15px 27px;
        border-radius: 30px;
    }
    .edit-button-main {
        width: 340px;
    }
    .edit-button {
        width: 294px;
        margin-bottom: 35px;
    }
    .edit-button-link {
        width: 240px;
    }
    .edit-button:hover, .edit-button-link:hover, .edit-button-main:hover {
        background-color: rgb(0, 113, 187);
    }
}

@media screen and (max-width: 480px) {
    .form-title {
        font-size: 21px;
    }
    .instruction-container-href {
        font-size: 3.7vw;
        margin-top: 8%;
    }
    .document-input-container {
        margin: 8% 0;
    }
    .document-label, .document-label-error {
        padding: 8px;
        border-radius: 7px;
    }
    .document-label:hover {
        background-color: rgb(0, 113, 187);
    }
    .document-label-error:hover {
        background-color: rgb(187, 0, 0);
    }
    .error-text, .error-parameters-text {
        font-size: 14px;
    }
    .document-icon {
        width: 16px;
    }
    .document-text, .document-name {
        font-size: 17px;
    }
    .edit-button, .edit-button-link, .edit-button-main {
        font-size: 18px;
        margin-bottom: 40px;
        padding: 12px 21px;
        border-radius: 26px;
    }
    .edit-button-main {
        width: 280px;
    }
    .edit-button {
        width: 242px;
        margin-bottom: 25px;
    }
    .edit-button-link {
        width: 200px;
    }
    .edit-button:hover, .edit-button-link:hover, .edit-button-main:hover {
        background-color: rgb(0, 113, 187);
    }
}