.ns-glass-card {
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(148, 163, 184, .28);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .12);
    margin: 0 auto;
    max-width: 920px;
    overflow: hidden;
    padding: 28px;
}

.ns-header {
    margin-bottom: 22px;
    text-align: center;
}

.ns-header h2 {
    color: #3b6db9;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 8px;
}

.ns-header p {
    color: #475569;
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
}

.ns-form-container {
    display: grid;
    gap: 18px;
}

.ns-note {
    align-items: flex-start;
    background: rgba(59, 109, 186, .08);
    border: 1px solid rgba(59, 109, 186, .18);
    border-radius: 8px;
    color: #334155;
    display: flex;
    gap: 12px;
    padding: 16px;
}

.ns-note svg {
    color: #3b6db9;
    flex: 0 0 auto;
    margin-top: 1px;
}

.ns-note p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.ns-id-example {
    color: #3b6db9;
    font-weight: 800;
}

.ns-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 18px;
}

.ns-form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ns-form-group label {
    color: #334155;
    font-size: 14px;
    font-weight: 700;
}

.ns-control {
    background: #fff;
    border: 1px solid #d9e2ec;
    border-radius: 6px;
    color: #111827;
    font-size: 16px;
    line-height: 1.3;
    min-height: 46px;
    padding: 9px 12px;
    width: 100%;
}

.ns-control:focus {
    border-color: #3b6db9;
    box-shadow: 0 0 0 3px rgba(59, 109, 186, .16);
    outline: none;
}

.ns-btn-submit {
    align-items: center;
    background: #9dc33a;
    border: 0;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 17px;
    font-weight: 800;
    gap: 10px;
    justify-content: center;
    min-height: 50px;
    padding: 12px 18px;
    transition: filter .2s ease, transform .2s ease;
    width: 100%;
}

.ns-btn-submit:hover,
.ns-btn-submit:focus {
    filter: brightness(.96);
    outline: none;
    transform: translateY(-1px);
}

@media (max-width: 760px) {
    .ns-glass-card {
        padding: 20px;
    }

    .ns-grid {
        grid-template-columns: 1fr;
    }

    .ns-header h2 {
        font-size: 25px;
    }
}
