.album-order-form-section {
    padding-block: 3vw 5vw;
}

.order-section-title {
    margin-bottom: 3vw;
}

.order-section-title h2 {
    color: white;
    font-size: 4vw;
    font-family: var(--font);
    font-weight: 700;
}

.order-section-title h2 span {
    font-size: 4.2vw;
}

.order__form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3vw;
    row-gap: 1.6vw;
}

.order__form div label,
.order__form div p {
    font-family: var(--font);
    font-size: 1.5vw;
    font-weight: 300;
    color: white;
    display: block;
    margin-left: 1.2vw;
    margin-bottom: 0.6vw;
}

.order__form div label span,
.order__form div p span {
    color: red;
    font-size: 1.8vw;
}

.order__form div input {
    font-family: var(--font);
    font-size: 1.6vw;
    font-weight: 400;
    width: 100%;
    border: 0.2vw solid var(--text-color);
    border-radius: 5vw;
    padding: 0.6vw 1.8vw;
    background-color: transparent;
    color: white;
}

.order__form div input::placeholder {
    font-size: 1.4vw;
}

.order__form div input:focus,
.order__form div input:focus-visible,
.order__form div select:focus,
.order__form div select:focus-visible {
    outline: none;
}

.order__form div select {
    width: 100%;
    font-family: var(--font);
    font-size: 1.6vw;
    font-weight: 400;
    padding: 0.6vw 1.8vw;
    border-radius: 5vw;
    background-color: transparent;
    border: 0.2vw solid var(--text-color);
    color: white;
    appearance: none;
}

.order__form div select option {
    background-color: #212121;
}

.order__form .group-number-input input::-webkit-inner-spin-button,
.order__form .pupil-number-input input::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}

.order__form .place-input label {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 1vw;
}


.order__form .place-input label p {
    margin: 0;
    font-size: 1.6vw;
}

.order__form .place-input input {
    padding: 0;
    appearance: none;
    width: 1.8vw;
    height: 1.8vw;
    position: relative;
}

.order__form .place-input input:checked::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    animation: 0.3s scaling ease-in-out;
}

@keyframes scaling {
    from {
        transform: scale(0);
    } to {
        transform: scale(1);
    }
}

.order__form div button {
    border-radius: 5vw;
    border: 0.2vw solid var(--text-color);
    padding: 0.8vw 2vw;
    background-color: #474646;
    color: white;
    font-family: "Orbitron";
    font-size: 1.5vw;
    font-weight: 500;
    letter-spacing: 2px;
}

.order__form div:last-child {
    display: flex;
    align-items: end;
    justify-content: end;
}


@media (max-width: 768px) {
    .order-section-title h2 {
        font-size: 6vw;
    }

    .order-section-title h2 span {
        font-size: 6.4vw;
    }

    .order__form {
        grid-template-columns: repeat(1, 1fr);
        gap: 5vw;
    }

    .order__form div label,
    .order__form div p {
        font-size: 3vw;
    }

    .order__form div label span {
        font-size: 3.4vw;
    }

    .order__form div input {
        padding: 2vw 4vw;
        font-size: 3vw;
    }

    .order__form div input::placeholder {
        font-size: 3vw;
    }

    .order__form div select {
        padding: 2vw 4vw;
        font-size: 3vw;
    }

    .order__form div select option {
        font-size: 3vw;
    }

    .order__form .place-input label {
        margin-block: 3vw;
        gap: 3vw;
    }

    .order__form .place-input label input {
        width: 3.8vw;
        height: 3.8vw;
    }

    .order__form .place-input label p {
        font-size: 3vw;
    }

    .order__form div button {
        padding: 2vw 4vw;
        font-size: 2.8vw;
    }
}