#zpet {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    font-size: 1.2rem;
    margin-top: 20px;
    color: var(--color-hover);
    width: fit-content;
}
#zpet * {
    color: var(--color-hover);
}
.radek {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}
#registrovat {
    width: 100%;
    background-color: var(--color-accent);
    font-weight: bold;
    height: fit-content;
    cursor: pointer;
}
.checkboxy {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    margin-left: 15px;
    width: fit-content;
}
@media (min-width: 768px) {
    .radek {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    form {
        margin: 0 auto;
        width: 90%;
        margin-top: 40px;
    }
    .radek input {
        width: 70%;
    }
    label {
        font-size: 1.2rem;
    }
}
