/* Базовые стили */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: white;
    /*background: #333;*/
    /*color: white;*/
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
}


.input_group {
    margin-bottom: 15px;
    text-align: left;
}

.input_group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Поля ввода */
input {
    width: 95%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/* Кнопка входа */
button {
    width: 100%;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #0056b3;
}

#restore_link{
    font-size:12px;
    color: black;
}

#restore_link:link{
  text-decoration: none;
}

#restore_link:visited {
  text-decoration: none;
}

#Botlink{
    color: #D7E2FF;
}

#Botlink:link{
  text-decoration: none;
}
#Botlink:visited{
  text-decoration: none;
}

#err_login{
    color:#ff4d40;
}