body .main .registration-container,
body .main .login-container {
    max-width: 450px;
    margin: 30px auto;
    padding: 25px;
    background-color: #f9f5f0; /* пастельный бежевый */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

body .main .registration-title,
body .main .login-title {
    text-align: center;
    color: #6d6875; /* пастельный фиолетово-серый */
    margin-bottom: 20px;
}

/* Форма */
body .main .registration-form,
body .main .login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

body .main .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

body .main .form-group label {
    color: #6d6875;
    font-weight: 500;
}

body .main .form-group input {
    padding: 10px 12px;
    border: 1px solid #e3d5ca; /* пастельный бежевый */
    border-radius: 5px;
    background-color: #fff9f0;
    font-size: 16px;
}

body .main .form-group input:focus {
    outline: none;
    border-color: #b5838d; /* пастельный розовый */
}

/* Кнопки */
body .main .submit-button {
    padding: 12px;
    background-color: #73b878; /* пастельный */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

body .main .submit-button:hover {
    background-color: #568a5a;
}

body .main .logout-button {
    background-color: #000000;
}

body .main .logout-button:hover {
    background-color: #454545;
}

/* Соц. сети кнопка */
body .main .social-auth {
    margin-top: 20px;
    text-align: center;
}

.vk-auth {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vk-auth img {
    width: 24px;
    height: 24px;
}

.vk-auth span {
    line-height: 1;
}

/* Ссылка на вход */
body .main .login-link {
    margin-top: 15px;
    text-align: center;
    color: #6d6875;
}

body .main .login-link a {
    color: #b5838d;
    text-decoration: none;
}

body .main .login-link a:hover {
    text-decoration: underline;
}
