/* Pagina register (standalone) - CSS extraido do inline (Fase 3). */
.login-header {
            text-align: center;
            margin-bottom: 16px;
        }
        body.step-termos .login-wrapper {
            height: 100vh;
            min-height: unset;
            overflow: hidden;
            align-items: stretch;
            padding: 20px;
            box-sizing: border-box;
        }
        body.step-termos .login-container {
            max-height: 100%;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-sizing: border-box;
        }
        #stepTermos {
            display: flex;
            flex-direction: column;
            flex: 1;
            min-height: 0;
            overflow: hidden;
        }
        .register-terms-box {
            flex: 1;
            min-height: 0;
            overflow-y: auto;
            margin-bottom: 24px;
            font-size: 14px;
            line-height: 1.7;
            color: #333;
        }
        .register-terms-box h1 { font-size: 22px; font-weight: 700; margin: 0 0 14px; line-height: 1.3; }
        .register-terms-box h2 { font-size: 16px; font-weight: 700; margin: 18px 0 6px; }
        .register-terms-box p  { margin: 0 0 8px; }
        .register-terms-box p:empty, .register-terms-box p br:only-child { display: none; }

        .register-terms-checks {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 16px;
        }
        .register-check-row {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            user-select: none;
            font-size: 14px;
            font-weight: 500;
            color: #3c3c3c;
            font-family: "Montserrat", sans-serif;
        }
        .register-check-icon {
            flex-shrink: 0;
            width: 16px;
            height: 16px;
            border: 2px solid #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: transparent;
        }
        .register-check-row.terms-checked .register-check-icon {
            background: #e6f7ff;
            border-color: #91d5ff;
            color: #1a6fa8;
        }
        #rowTermos.terms-locked, #rowImagem.terms-locked {
            opacity: 0.35;
            pointer-events: none;
            cursor: default;
        }
        #btnAvancar:disabled {
            opacity: 0.45;
            cursor: not-allowed;
            pointer-events: none;
        }
