﻿:root {
    --brand: #007ec7;
    --primary-ink: #0f2b46;
    --muted: #6b7a8c;
    --accent: #2a72ff;
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
    color: var(--primary-ink)
}

.brand {
    color: var(--brand)
}

.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
}

.form-control:focus {
    border-color: #007ec7;
    box-shadow: none;
}

.box-form {
    padding: 30px;
    width: auto;
    max-width: 450px;
    margin: 50px auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.company-picker-shell {
    min-height: calc(100vh - 220px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 12px;
}

.company-picker-card {
    width: 100%;
    max-width: 560px;
    background: #fff;
    border-radius: 24px;
    padding: 36px 36px 30px;
    box-shadow: 0 18px 45px rgba(18, 43, 70, 0.12);
}

.company-picker-title {
    font-size: 2rem;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 28px;
    color: #123763;
    font-weight: 500;
}

.company-picker-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.company-picker-option {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    color: #123763;
    cursor: pointer;
}

.company-picker-radio {
    width: 20px;
    height: 20px;
    accent-color: #3f6df0;
    margin: 0;
}

.company-picker-submit {
    width: 100%;
    min-height: 42px;
    border-radius: 8px;
    font-size: 1.1rem;
}

@media (max-width: 576px) {
    .company-picker-card {
        padding: 28px 20px 24px;
        border-radius: 18px;
    }
}