html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}



header {
    background-color: #1a1a1a; /* Темный фон */
    padding: 10px;
    text-align: center;
}

.logo img {
    max-height: 50px; /* Размер логотипа */
}

body {
    font-family: 'Arial', sans-serif; /* Общий шрифт */
    background-color: #d4d4d4; /* Светлый фон */
    color: #333; /* Цвет текста */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

button {
    background-color: #007bff; /* Синий цвет кнопки */
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

    button:hover {
        background-color: #0056b3; /* Темно-синий при наведении */
    }


form {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
footer {
    background-color: #1a1a1a; /* Темный фон */
    padding: 10px;
    text-align: center;
}

footer div{
    color: aliceblue;
}

input[type="text"], input[type="email"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}
