.sign-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    flex-wrap: wrap;
}

.sign-form {
    flex: 1;
    min-width: 300px;
}

.sign-logo {
    flex: 1;
    text-align: center;
}

.sign-logo img,
.sign-logo svg {
    max-width: 100%;
    max-height: 200px; /* nebo třeba 150px podle potřeby */
    height: auto;
    margin: 0 auto;
}


/* Styl pro tlačítko */
.sign-button {
    display: inline-block;
    padding: 0.6em 1.2em;
    background-color: var(--color-accent);
    color: black;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    text-align: center;
}

.sign-button:hover {
    background-color: var(--color-accent-hover);
    color: black;
}


/* Jemné základní stylování textu */
.sign-form h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.sign-form p {
    margin-top: 0.5rem;
}

/* Mobilní zobrazení */
@media (max-width: 768px) {
    .sign-container {
        flex-direction: column;
    }

    .sign-logo {
        display: none;
    }
}
