body {
    font-family: 'Open Sans';
    background-color: #27272b;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    font-size: 14px;
}

.container {
    /*background-color: #fff;*/
    /*padding: 20px;*/
    /*border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);*/
    width: 100%;
    max-width: 280px;
}


/*.form-group {
    margin-bottom: 20px;

}*/

form {
    /*margin-top: 20%;*/
    display: flex;
    flex-direction: column;
    width: 290px;
}

input[type="text"],
input[type="password"] {
    width: 270px;
    /*margin: 10px;*/
    padding: 10px;
    border: none;
    font-size: 14px;
    background-color: #323237;
    caret-color: white;
    font-family: 'Open Sans';
}

.shadows {
    box-shadow: inset 20px 20px 0px 20px #323237;
    color: white;
    -webkit-text-fill-color: #999;
    margin-bottom: 20px;
}

.shadows:focus {
    outline: 1px solid #fff; /* Рамка при получении фокуса */
    border-radius: 3px;
}

.button {
    width: 290px;
    padding: 12px;
    background: #cf295b;
    border: unset;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    color: white;
    margin-bottom: 25px;
    font-family: 'Open Sans';
}

.button:hover {
    background-color: #D0D0D0;
    color: #cf295b;
    transition: 0.5s;
}

#error-message {
    max-width: 280px;
    border: 2px solid #cf295b;
    border-radius: 3px;
    padding: 10px;
    text-align: center;
    /*font-weight: bold;*/
    margin-bottom: 10px;
    transition: opacity 2s ease-in-out;
}

#brand {
    font-size: 30px;
    text-align: center;
    color: #cf295b;
    margin-bottom: 30px;
    user-select: none;
    /*font-weight: bold;*/

}

#footer {
    font-size: 13px;
    text-align: center;
    color: #afafaf;
    margin-top: 25px;
    /*margin-bottom: 30px;*/
}
