/* Nastavení pro celé tělo stránky */
body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Styling pro banner */
#banner h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}
.w-100 {
    width: 100% !important;
}
/* Styling tlačítka ve stylu Microsoftu */
.btn-microsoft {
    display: inline-block;
    background-color: #0078d4;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    width: auto;
}

/* Při hoveru měníme barvu tlačítka */
.btn-microsoft:hover {
    background-color: #005a9e;
}

.login-container {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    max-width: 400px;
    text-align: center;
    width: 100%;
}

#banner {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    width: 100%;
    max-width: 400px;
}

#frm-login {
    margin-top: 50px;
}

.form-control {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.btn {
    background-color: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

/* Pro mobilní zařízení */
@media (max-width: 768px) {
    .login-container {
        padding: 1.5rem;
        width: 90%;
    }

    #banner h1 {
        font-size: 20px;
    }

    .btn-microsoft {
        font-size: 14px;
        padding: 10px 15px;
    }
}

.flash {
    margin-top: 30px;
}

.login-footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 30px 0;
}

.bounce-button {
    cursor: pointer;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0% {
        transform: translateY(0); /* Začátek, bez posunu */
    }
    20% {
        transform: translateY(-10px); /* Vyskočení nahoru */
    }
    40% {
        transform: translateY(0); /* Návrat na původní pozici */
    }
    60% {
        transform: translateY(-5px); /* Menší odraz nahoru */
    }
    80% {
        transform: translateY(0); /* Návrat na původní pozici */
    }
    100% {
        transform: translateY(0); /* Konec animace */
    }
}
