/* Стили для главной страницы */

.home-container {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-top: 0;
}

.home-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
}

.home-text {
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 5px auto 0 auto;
}

.home-text h2 {
    color: #333333;
    text-align: center;
    margin-bottom: 20px;
}

.home-text p {
    margin-bottom: 15px;
}

.home-image {
    flex: 0 0 auto;
}

.home-image img {
    width: 300px;
    height: auto;
    object-fit: contain;
}

.home-form-section {
    flex: 1;
    max-width: 350px;
}

.home-title {
    font-size: 48px;
    font-weight: 300;
    color: #333;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.social-buttons {
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-buttons .btn {
    margin-bottom: 0;
}

.email-form {
    margin-bottom: 20px;
}

.email-form .form-group {
    margin-bottom: 16px;
}

.register-link {
    text-align: center;
}

/* Адаптивность */
@media (max-width: 768px) {
    .home-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .home-image img {
        width: 200px;
    }
    
    .home-title {
        font-size: 36px;
    }
    
    .home-form-section {
        max-width: 100%;
        width: 100%;
    }
}