﻿.get-started-container {
    max-width: 540px;
    margin: 20px auto;
    padding: 20px;
    font-family: Inter, sans-serif;
    background: #161b22; /* тёмная карточка */
    border-radius: 16px;
    border: 1px solid #2d3748;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    color: #e2e8f0;
}

    .get-started-container h1 {
        color: #f1f5f9; /* почти белый, но мягче */
        margin-bottom: 8px;
    }

.subtitle{
    color: #666;
    margin-bottom: 32px;
}

.get-started-form label{
    display: block;
    margin-top: 16px;
    font-weight: 600;
    color: #cbd5e1;
}

.get-started-form input,
.get-started-form select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #374151;
    background: #1e293b;
    color: #e2e8f0;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .get-started-form input::placeholder,
    .get-started-form select option {
        color: #6b7280; /* приглушённый плейсхолдер */
    }

    .get-started-form input:focus,
    .get-started-form select:focus {
        outline: none;
        border-color: #60a5fa;
        box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
    }

small{
    color: #777;
}

.radio-group {
    display: flex;
    gap: 24px;
    margin-top: 8px;
    color: #cbd5e1;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.gs-btn-primary {
    flex: 1;
    background: #4f46e5; /* indigo-600 */
    color: white;
    padding: 14px 20px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

    .gs-btn-primary:hover {
        background: #6366f1; /* indigo-500 */
        transform: translateY(-1px);
    }

.btn-secondary { /* переименовал класс для ясности */
    flex: 1;
    background: #1e293b;
    color: #e2e8f0;
    border: 1px solid #475569;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

    .btn-secondary:hover {
        background: #334155;
        border-color: #64748b;
    }

.cta-info-column {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 8px;
    line-height: 1.4;
}


/*It importnatn*/
label.required::after {
    content: "*";
    color: #ef4444;
    margin-left: 4px;
}


.phone-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 12px;
    margin-top: 6px;
}

.phone-code {
    padding: 12px 14px; 
    border-radius: 10px;
    border: 1px solid #374151;
    background: #1e293b;
    color: #e2e8f0;
}

.phone-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #374151;
    background: #1e293b;
    color: #e2e8f0;
}

.validation-message {
    color: #ef4444;
    font-size: 0.9rem;
    margin-top: 6px;
}

.hp {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}