body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}


/* Стили для header */

.header {
    background-color: #343a40;
    padding: 10px 0;
    text-align: center;
}

.header .logo {
    display: inline-block;
}

.header .logo a {
    text-decoration: none;
}

.header .logo img {
    height: 50px;
    /* Высота логотипа */
}


/* Стили для login-section */

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.login-section {
    background: linear-gradient(-90deg, #000000, #8a2be2, #000000, #8a2be2, #000000);
    background-size: 300% 400%;
    animation: gradientAnimation 15s ease infinite;
    /* Применение анимации */
    padding: 8% 0;
    text-align: center;
}

.login-section .login-content {
    max-width: 400px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.login-section h2 {
    margin-bottom: 25%;
    font-size: 24px;
    color: #333;
}

.login-section form {
    display: flex;
    flex-direction: column;
}

.login-section input,
.login-section button {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-section button {
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}

.login-section button:hover {
    background-color: #0056b3;
}

.login-section p {
    margin-top: 20px;
    font-size: 14px;
}

.login-section p a {
    color: #007bff;
    text-decoration: none;
}

.login-section p a:hover {
    text-decoration: underline;
}


/* Стили для footer */

.footer {
    background-color: #343a40;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    position: absolute;
    width: 100%;
    bottom: 0;
}