/* 404 */
.not-found {
    height: 60vh;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}


/* MEDIA QUERIES */
@media (max-width: 768px) {
   


    /* Other */
    #template-content {
        flex-direction: column;
        gap: 2rem;
    }

    #template-content .template-selector, #template-content .template-details {
        width: 100%;
    }

    #template-content .template-details .template-description p {
        text-align: center;
    }

    #form-content {
        flex-direction: column;
    }

    #form-content form {
        width: 100%;
    }

    #form-content .instructions {
        width: 100%;
    }

    #form-content .instructions .instructions-box .instruction {
        gap: 1rem;
    }

    #form-content .instructions .instructions-box .instruction .instruction-number-box {
        height: 20px;
        width: 20px;
    }


}