@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

.center-table {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100dvh;
    background: #1a1919;
    background: var(--gradient-normal);
}

.login {
    margin: 0;
    padding: 0;
    height: 100dvh;
    overflow: hidden;
    background-color: #f5f5f5;
    font-family: "Outfit", sans-serif;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.login-form {
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 8px 2px rgb(0,0,0);
    padding: 30px;
    border-radius: 1px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:20px;
    width: 100%;
    max-width: 400px;
    animation: fadeIn 0.5s ease-out forwards;

}

.login-form h2 {
    width: 100%;
    text-align: center;
    margin: 0;
    font-size: 1.5rem;
    color: white;
    font-weight: bolder;
}


@media (max-width: 992px) {
    .login-form {
        max-width: 500px;
        padding: 50px;
    }

    .login-form h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .login-form {
        width: 90%;
        max-width: 800px;
        padding: 30px;
    }

    .login-form h2 {
        font-size: 1.5rem;
    }
}

.col-content>*:last-child {
    /* CSS jen pro poslední položku */
    margin-bottom: 0;
}