/* Стили для страницы входа */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
}

.page-center {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.sign-up {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    width: 400px;
    max-width: 90%;
    display: flex;
    flex-direction: column;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label {
    font-weight: bold;
}

input {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: border-color 0.3s ease-in-out;
    font-size: 16px;
}

input:focus {
    outline: none;
    border-color: #333;
}

.form-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.form-btn:hover {
    background-color: #111;
}

/*form {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 10px;*/
/*    align-items: center; !* выравнивание по центру *!*/
/*}*/

/*label {*/
/*    font-weight: bold;*/
/*    text-align: left; !* выравнивание по левому краю *!*/
/*    display: block;*/
/*}*/