.field-group {
    margin: 1rem 0;
}

.field-group__label {
    font-weight: bold;
}

.field-group .field-group
 {
     padding-left: 2em;
     margin: 0.2rem 0;
 }
 
 video {
     max-width: 100%;
 }
 
p.step-instructions {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 14px;
    font-weight: 500;
 }
 
 .download-wrap {
     display: flex;
     gap: 8px;
     align-items: center;
    margin-bottom: 2rem;
 }
 
 .spinner {
    width: 2rem;
    height: 2rem;
    border: 5px solid var(--wp--preset--color--accent-3);
    border-bottom-color: var(--wp--preset--color--accent-2);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 