/* Investor Access Gate — password form */

.tist-investor-gate {
    max-width: 480px;
    margin: 40px auto;
    padding: 32px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-align: center;
    font-family: inherit;
}

.tist-investor-gate__intro {
    margin: 0 0 20px;
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

.tist-investor-gate__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tist-investor-gate__input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
}

.tist-investor-gate__input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

.tist-investor-gate__btn {
    padding: 10px 24px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.tist-investor-gate__btn:hover {
    background: #005d8c;
}

.tist-investor-gate__btn:disabled {
    background: #aaa;
    cursor: not-allowed;
}

.tist-investor-gate__error {
    color: #c00;
    font-size: 14px;
    margin: 0;
}
