/* Стили для кнопок и форм */

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
}

/* Общие стили для круглых кнопок */
.btn-round {
    background-color: #f5f5f5;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ced4da;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    min-width: auto;
    padding: 0;
    cursor: pointer;
}

.btn-round:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.btn-round img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.btn-vk {
    color: #4680C2;
    margin-bottom: 10px;
}

.btn-vk:hover {
    color: #4680C2;
}

.btn-telegram {
    color: #229ED9;
    margin-bottom: 10px;
}

.btn-telegram:hover {
    color: #229ED9;
}

.btn-email {
    color: #28a745;
}

.btn-email:hover {
    color: #28a745;
}

/* Формы */
.form-group {
    margin-bottom: 1rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-control::placeholder {
    color: #6c757d;
}

/* Ссылки */
.link {
    color: #6c757d;
    text-decoration: underline;
    font-size: 14px;
}

.link:hover {
    color: #495057;
    text-decoration: underline;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .btn {
        width: 100%;
        min-width: auto;
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .form-control {
        font-size: 16px; /* Предотвращает зум на iOS */
    }
}