.sheets-page {
    width: 100%;
    padding: 18px 20px 28px;
}

.sheets-heading {
    min-height: 72px;

    display: flex;
    align-items: center;

    padding: 0 20px;

    background: #0b1728;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 5px 5px 0 0;
}

.sheets-heading h1 {
    margin: 0;

    color: #ffffff;

    font-size: 32px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: -0.02em;
}

.sheets-panel {
    width: 100%;

    background: #07111f;
    border-radius: 0 0 5px 5px;
}

.sheets-panel__header {
    min-height: 84px;

    display: flex;
    align-items: center;

    padding: 0 24px;

    background: #101d31;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sheets-panel__header h2 {
    margin: 0;

    color: var(--ffo-gold);

    font-size: 28px;
    line-height: 1.1;
    font-weight: 900;
}

.sheets-form {
    width: 100%;
    max-width: 880px;

    margin: 0 auto;
    padding: 38px 30px 42px;
}

.sheets-field {
    margin-bottom: 28px;
}

.sheets-field label {
    display: block;

    margin-bottom: 12px;

    color: #ffffff;

    font-size: 20px;
    line-height: 1;
    font-weight: 800;
}

.sheets-field input,
.sheets-field select {
    width: 100%;
    height: 72px;

    padding: 0 20px;

    background: #0b1728;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 5px;

    color: #ffffff;

    font-family: inherit;
    font-size: 20px;
    font-weight: 700;

    outline: none;
}

.sheets-field input::placeholder {
    color: #7f8aa0;
}

.sheets-field input:focus,
.sheets-field select:focus {
    border-color: rgba(240, 197, 69, 0.7);
}

.sheets-field input[type="file"] {
    height: auto;
    min-height: 72px;

    padding: 18px 20px;

    cursor: pointer;
}

.sheets-field input[type="file"]::file-selector-button {
    margin-right: 18px;
    padding: 12px 18px;

    background: #162b6f;
    border: 0;
    border-radius: 4px;

    color: #ffffff;

    font-family: inherit;
    font-size: 16px;
    font-weight: 800;

    cursor: pointer;
}

.sheets-field select {
    cursor: pointer;
}

.sheets-note {
    margin: 8px 0 30px;
    padding: 20px 22px;

    background: #0b1728;
    border-left: 4px solid var(--ffo-gold);
    border-radius: 4px;

    color: #cfd8e8;

    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
}

.sheets-note strong {
    color: #ffffff;
}

.sheets-message {
    margin-bottom: 28px;
    padding: 20px 22px;

    border-radius: 4px;

    font-size: 18px;
    line-height: 1.5;
    font-weight: 800;
}

.sheets-message--error {
    background: #2a1116;
    border-left: 4px solid #d95862;

    color: #ffffff;
}

.sheets-submit {
    width: 100%;
    height: 78px;

    background: #162b6f;
    border: 0;
    border-radius: 5px;

    color: #ffffff;

    font-family: inherit;
    font-size: 20px;
    line-height: 1;
    font-weight: 900;

    text-transform: uppercase;

    cursor: pointer;
}

.sheets-submit:hover,
.sheets-submit:focus-visible {
    background: #1c3689;
}

.sheets-submit--link {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 32px;

    text-decoration: none;
}

.sheets-success {
    width: 100%;
    max-width: 880px;

    margin: 0 auto;
    padding: 54px 30px 48px;

    text-align: center;
}

.sheets-success__label {
    margin-bottom: 14px;

    color: var(--ffo-gold);

    font-size: 16px;
    line-height: 1;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sheets-success h2 {
    margin: 0;

    color: #ffffff;

    font-size: 42px;
    line-height: 1.1;
    font-weight: 900;
}

.sheets-success__message {
    margin: 18px 0 32px;

    color: #cfd8e8;

    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
}

.sheets-success__details {
    margin: 0;
    padding: 0;

    background: #0b1728;
    border: 2px solid rgba(255, 255, 255, 0.09);
    border-radius: 5px;

    text-align: left;
}

.sheets-success__details div {
    min-height: 82px;

    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    align-items: center;

    padding: 0 22px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.sheets-success__details div:last-child {
    border-bottom: 0;
}

.sheets-success__details dt {
    color: var(--ffo-gold);

    font-size: 16px;
    line-height: 1;
    font-weight: 900;

    text-transform: uppercase;
}

.sheets-success__details dd {
    margin: 0;

    color: #ffffff;

    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}