.social-auth {
    margin-top: 2rem;
    text-align: center;
}

.social-auth p {
    margin-bottom: 1rem;
    color: #666;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto;
}

.social-button {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-button.vk {
    background-color: #4C75A3;
    color: white;
}

.social-button.vk:hover {
    background-color: #3a5a80;
}

.social-button.vk::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url('/assets/images/social/vk.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.social-button.telegram {
    background-color: #0088cc;
    color: white;
}

.social-button.telegram:hover {
    background-color: #006699;
}

.social-button.telegram::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url('/assets/images/social/telegram.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.social-button.yandex {
    background-color: #FFCC00;
    color: #000;
}

.social-button.yandex:hover {
    background-color: #e6b800;
}

.social-button.yandex::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url('/assets/images/social/yandex.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.social-button.google {
    background-color: #fff;
    color: #757575;
    border: 1px solid #ddd;
}

.social-button.google:hover {
    background-color: #f8f8f8;
    border-color: #c6c6c6;
}

.social-button.google::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url('/assets/images/social/google.png');
    background-size: contain;
    background-repeat: no-repeat;
} 